/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables for Theme */
:root {
  /* Light Mode Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-tertiary: #adb5bd;
  --border-color: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

  /* Accent Colors (same for both themes) */
  --color-primary: #e91e63;
  --color-primary-dark: #c2185b;
  --color-primary-light: #f06292;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  --color-info: #2196f3;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Topbar */
.topbar {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: background-color 0.3s ease;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icons {
  display: flex;
  gap: 8px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.email-text {
  color: #fff;
  font-weight: 500;
}

.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.toggle-switch {
  width: 40px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-slider {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 24px;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.theme-toggle.dark .toggle-slider {
  transform: translateX(20px);
}

/* Hero Bottom Bar */
.hero-bottom-bar {
  background: #e91e63;
  height: 88px;
  width: 100%;
  display: flex;
}

.bar-section {
  flex: 1;
  height: 100%;
  position: relative;
}

.bar-section:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(135deg, #f8f9ff 0%, #fef7f7 100%);
}

.bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.bar-content i {
  font-size: 28px;
  background: white;
  color: #e91e63;
  padding: 8px;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.bar-content i:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.bar-content .number {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
}

.theme-toggle i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.theme-toggle.dark .fa-moon {
  color: #fff;
}

.theme-toggle:not(.dark) .fa-sun {
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 10000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Desktop'ta hamburger menüyü ve mobile menu'yu gizle */
.mobile-menu-toggle,
.mobile-login-link,
.mobile-menu-modal {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  display: flex;
  gap: 2px;
  align-items: center;
}

.logo-icon i {
  color: var(--color-primary);
  font-size: 16px;
  animation: logoGlow 2s ease-in-out infinite;
  transition: color 0.3s ease;
}

.logo-icon i:nth-child(1) { animation-delay: 0s; }
.logo-icon i:nth-child(2) { animation-delay: 0.2s; }
.logo-icon i:nth-child(3) { animation-delay: 0.4s; }

@keyframes logoGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  justify-content: flex-start;
}

.nav-menu .mobile-login-link {
  display: none;
}

/* Nav Item Wrapper for Dropdown */
.nav-item-wrapper {
  position: relative;
  display: inline-block;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75rem 0.9375rem;
  min-height: 44px;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(233, 30, 99, 0.4);
  font-size: 14px;
  font-weight: 300;
}

.nav-item-wrapper {
  position: relative;
}

.nav-item-wrapper::after {
  content: '|';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(233, 30, 99, 0.4);
  font-size: 14px;
  font-weight: 300;
}

.nav-item-wrapper .nav-link::after {
  display: none;
}

.nav-link .dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #e91e63;
}

.nav-item-wrapper:hover .nav-link .dropdown-icon {
  transform: rotate(180deg);
}

.nav-link:hover {
  color: #e91e63;
  background: rgba(233, 30, 99, 0.05);
}

.nav-link i {
  font-size: 16px;
  color: #e91e63;
}

/* Social Platforms Dropdown */
.social-platforms-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 320px;
  margin-top: 10px;
}

.nav-item-wrapper:hover .social-platforms-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 10px;
  border-radius: 10px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
}

.platform-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
  background: var(--bg-tertiary);
}

.platform-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.platform-item:hover .platform-icon {
  transform: scale(1.1);
}

/* Platform Icon Colors */
.platform-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.tiktok {
  background: linear-gradient(135deg, #000, #000);
}

.platform-icon.youtube {
  background: #FF0000;
}

.platform-icon.twitter {
  background: #1DA1F2;
}

.platform-icon.facebook {
  background: #1877F2;
}

.platform-icon.spotify {
  background: #1DB954;
}

.platform-icon.telegram {
  background: #0088cc;
}

.platform-icon.discord {
  background: #5865F2;
}

.platform-icon.twitch {
  background: #9146FF;
}

.platform-icon.linkedin {
  background: #0A66C2;
}

.platform-icon.pinterest {
  background: #E60023;
}

.platform-icon.snapchat {
  background: #FFFC00;
  color: #000;
}

/* Corporate Dropdown Styles */
.corporate-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 280px;
  margin-top: 10px;
}

.nav-item-wrapper:hover .corporate-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.corporate-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corporate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.corporate-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
  background: #fff;
}

.corporate-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: #e91e63;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.corporate-item:hover .corporate-icon {
  transform: scale(1.1);
}

/* Corporate Icon Colors */
.corporate-icon.about,
.corporate-icon.terms,
.corporate-icon.refund,
.corporate-icon.distance,
.corporate-icon.kvkk {
  background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
}

/* Mobile Corporate Submenu */
.mobile-corporate-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(233, 30, 99, 0.05);
  border-radius: 8px;
  margin-top: 8px;
}

.mobile-corporate-submenu.active {
  max-height: 500px;
  padding: 12px;
}

.mobile-corporate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-corporate-item:last-child {
  margin-bottom: 0;
}

.mobile-corporate-item:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 10px rgba(233, 30, 99, 0.15);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.icon-btn {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 2px solid var(--border-color);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  border-color: #e91e63;
  color: #e91e63;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.icon-btn .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e91e63;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Custom Tooltip Styles */

.icon-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

.icon-btn::before {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}

.icon-btn:hover::after,
.icon-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Notifications Dropdown */
.notification-wrapper {
  position: relative;
  display: inline-block;
}

.notifications-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 500px;
  overflow: hidden;
}

.notifications-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notifications-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-header {
  padding: 20px 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.notification-count {
  font-size: 12px;
  color: #e91e63;
  background: rgba(233, 30, 99, 0.1);
  padding: 4px 8px;
  border-radius: 10px;
  font-weight: 500;
}

.notifications-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px 0;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.notification-item:hover {
  background: rgba(233, 30, 99, 0.05);
}

.notification-item.new {
  border-left-color: #e91e63;
  background: rgba(233, 30, 99, 0.02);
}

.notification-item.new::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 20px;
  width: 8px;
  height: 8px;
  background: #e91e63;
  border-radius: 24px;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.notification-icon.yenilendik {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: #fff;
}

.notification-icon.referans {
  background: linear-gradient(135deg, #2196f3, #42a5f5);
  color: #fff;
}

.notification-icon.bonus {
  background: linear-gradient(135deg, #ff9800, #ffa726);
  color: #fff;
}

.notification-content {
  flex: 1;
}

.notification-content h5 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.notification-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.dropdown-footer {
  padding: 15px 20px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.view-all-btn {
  color: #e91e63;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  color: #c2185b;
  text-decoration: underline;
}

.btn-login {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.btn-login i.fa-user {
  font-size: 14px;
  opacity: 0.9;
}

.btn-login span {
  font-size: 14px;
  letter-spacing: 0.3px;
}

.btn-login i.fa-arrow-right {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-login:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-login:hover i.fa-arrow-right {
  transform: translateX(3px);
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-login:hover::before {
  left: 100%;
}


/* Login Modal */
.login-modal {
  width: 900px;
  height: 550px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}

.login-content {
  display: flex;
  height: 100%;
}

.login-left {
  flex: 1;
  background: var(--bg-primary);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.login-form {
  width: 100%;
  max-width: 350px;
}

.login-form h2 {
  color: #e91e63;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-form p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.input-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

.input-wrapper i {
  position: absolute !important;
  left: 18px !important;
  color: #999 !important;
  font-size: 16px !important;
  z-index: 2 !important;
  pointer-events: none !important;
  width: 16px !important;
  text-align: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.input-wrapper input {
  width: 100% !important;
  padding: 15px 15px 15px 50px !important;
  border: 2px solid var(--border-color) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

.input-wrapper input:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.forgot-password {
  text-align: right;
  margin-bottom: 25px;
}

.forgot-password a {
  color: #e91e63;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Telefon input alanı için özel stiller */
.phone-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  border: 2px solid #f0f0f0 !important;
  border-radius: 10px !important;
  padding: 0 !important;
  transition: all 0.3s ease !important;
  background: white !important;
}

.phone-wrapper i.fa-phone {
  display: none !important;
}

.phone-wrapper:focus-within {
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.phone-wrapper input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 14px !important;
  padding: 15px 15px 15px 10px !important;
  margin: 0 !important;
}

/* Ülke seçici stiller */
.country-selector {
  position: relative;
  margin-right: 2px;
}

.selected-country {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  cursor: pointer !important;
  padding: 15px 12px !important;
  border-radius: 8px 0 0 8px !important;
  transition: background-color 0.2s ease !important;
  min-width: 85px !important;
  background: #f8f9fa !important;
  border-right: 1px solid #e9ecef !important;
  margin: 2px 0 2px 2px !important;
  height: 32px;
  background-color: #d0d0d0;
}

.selected-country:hover {
  background-color: #e9ecef !important;
}

.country-info {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 600 !important;
  color: #495057 !important;
}

.selected-country .flag {
  font-size: 16px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.selected-country .code {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #495057 !important;
}

.dropdown-arrow {
  font-size: 12px !important;
  color: #6c757d !important;
  transition: transform 0.2s ease !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  width: 12px !important;
  height: 12px !important;
  text-align: center !important;
  transform-origin: 6px 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.country-selector.active .dropdown-arrow {
  transform: translateY(-50%) rotate(90deg) !important;
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  max-height: 250px;
  overflow: hidden;
  min-width: 280px;
}

.country-selector.active .country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.country-search {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.country-search input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.country-search input:focus {
  border-color: #e91e63;
}

.country-list {
  max-height: 180px;
  overflow-y: auto;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.country-option:hover {
  background-color: #f8f9fa;
}

.country-option.selected {
  background-color: #e91e63;
  color: white;
}

.country-option .flag {
  font-size: 16px;
  min-width: 20px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.country-option .name {
  flex: 1;
  font-size: 14px;
}

.country-option .code {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.country-option.selected .code {
  color: rgba(255, 255, 255, 0.8);
}

/* Kayıt ol butonu için ek stiller */
.register-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.register-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

/* Kayıt ol modalı için daha büyük boyut */
#registerModal .login-modal {
  width: 950px;
  height: 650px;
}

.register-link {
  text-align: center;
  font-size: 14px;
}

.register-link span {
  color: #666;
}

.register-link a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
}

.register-link a:hover {
  text-decoration: underline;
}

.login-right {
  flex: 1;
  background: linear-gradient(135deg, #e91e63, #f06292);
  position: relative;
  overflow: hidden;
}

.login-image {
  width: 100%;
  height: 100%;
  background-image: url('../../uploads/media/girisyapresim.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.register-image {
  width: 100%;
  height: 100%;
  background-image: url('../../uploads/media/girisyapresim.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-modal .modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}

/* Order Search Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-search-modal {
  width: min(600px, 90vw);
  height: min(400px, 80vh);
  max-width: 90vw;
  max-height: 80vh;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transform: scale(0.7) translateY(50px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .order-search-modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 24px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(240, 98, 146, 0.8)), url('../../uploads/media/siparissorgu.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}

.modal-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
}

/* Debug: Resim yüklenemediğinde arka plan göster */
.modal-image img:not([src]) {
  background: #ff0000;
}

.modal-image img[src=""] {
  background: #ff0000;
}

/* Search Overlay Box */
.search-overlay-box {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 15px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10002;
  width: calc(100% - 80px);
  max-width: 450px;
  animation: slideUpIn 0.6s ease-out 0.2s both;
}

.order-search-modal .modal-header {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10003;
  width: 90%;
  max-width: 500px;
}

.modal-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-subtitle {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-input-modal {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  height: 44px;
  box-sizing: border-box;
}

.search-input-modal:focus {
  border-color: #e91e63;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.search-btn-modal {
  padding: 12px 20px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 44px;
  box-sizing: border-box;
}

.search-btn-modal:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.search-btn-modal:active {
  transform: translateY(0);
}

/* ============================================
   ADD TO CART MODAL
   ============================================ */
.add-cart-modal {
  width: min(500px, 90vw);
  max-width: 90vw;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  position: relative;
  transform: scale(0.7) translateY(50px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.modal-overlay.active .add-cart-modal {
  transform: scale(1) translateY(0);
}

.add-cart-content {
  padding: 30px;
  position: relative;
}

/* Back Button */
.back-btn {
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.back-btn:hover {
  background: #e8e8e8;
  transform: translateX(-5px);
}

.back-btn i {
  font-size: 14px;
}

/* Product Header */
.cart-product-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #fafafa;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
}

.cart-product-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

.cart-product-icon.instagram {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.cart-product-icon.tiktok {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.cart-product-icon.youtube {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.cart-product-icon.twitter {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.cart-product-icon.facebook {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.cart-product-info {
  flex: 1;
}

.cart-product-platform {
  display: block;
  color: #e91e63;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.cart-product-title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Form Group */
.cart-form-group {
  margin-bottom: 25px;
}

.cart-form-group label {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-input-wrapper i {
  position: absolute;
  left: 15px;
  color: #e91e63;
  font-size: 16px;
  pointer-events: none;
}

.cart-input-wrapper input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  background: #fafafa;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cart-input-wrapper input::placeholder {
  color: #999;
}

.cart-input-wrapper input:focus {
  outline: none;
  border-color: #e91e63;
  background: #fff;
}

.cart-input-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 15px;
  background: #fff9e6;
  border-radius: 10px;
  border-left: 3px solid #fcc419;
}

.cart-input-note i {
  color: #fcc419;
  font-size: 14px;
  flex-shrink: 0;
}

.cart-input-note {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

/* Submit Button */
.cart-submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.cart-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}

.cart-submit-btn:active {
  transform: translateY(0);
}

.cart-submit-btn i {
  font-size: 18px;
}

/* Buy Now Button Variant */
.buy-now-submit-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.buy-now-submit-btn:hover {
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .add-cart-modal {
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
  }

  .add-cart-content {
    padding: 20px 20px 25px 20px;
  }

  .back-btn {
    margin-bottom: 15px;
  }

  .cart-product-header {
    padding: 15px;
    margin-bottom: 20px;
  }

  .cart-product-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .cart-product-title {
    font-size: 15px;
    line-height: 1.3;
  }

  .cart-form-group {
    margin-bottom: 18px;
  }

  .cart-form-group label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .cart-input-wrapper input {
    font-size: 15px;
  }

  .cart-input-note {
    font-size: 12px;
    margin-top: 8px;
    line-height: 1.4;
  }

  .cart-submit-btn {
    padding: 14px 25px;
    font-size: 15px;
    margin-top: 20px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  padding: 80px 40px;
  min-height: 500px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
  text-align: left;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid rgba(233, 30, 99, 0.3);
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #e91e63;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px dashed #e91e63;
  margin-bottom: 25px;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  margin-bottom: 0.625rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.hero-subtitle {
  font-size: clamp(1.75rem, 5vw, 2.625rem);
  font-weight: 700;
  color: #e91e63;
  margin: 0;
  margin-bottom: 1.5625rem;
  line-height: 1.2;
}

.hero-description {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.875rem;
  max-width: 31.25rem;
  transition: color 0.3s ease;
}

.hero-rating {
  display: flex;
  align-items: center;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 182, 193, 0.3);
  padding: 12px 20px;
  border-radius: 30px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  color: #e91e63;
  font-size: 16px;
}

.rating-badge {
  background: #e91e63;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.play-button {
  width: 35px;
  height: 35px;
  background: white;
  color: #333;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.play-button:hover {
  transform: scale(1.1);
  background: #e91e63;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  /* Topbar Mobile */
  .topbar {
    padding: 8px 20px !important;
    font-size: 13px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    display: flex !important;
  }

  .topbar-left {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    order: 1 !important;
    flex: 1 !important;
  }

  .contact-icons {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .topbar-right {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    order: 2 !important;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .theme-toggle {
    gap: 6px;
  }

  .toggle-switch {
    width: 40px;
    height: 20px;
  }

  .toggle-slider {
    width: 16px;
    height: 16px;
  }

  /* Navbar Mobile */
  .navbar {
    padding: 15px 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10000;
  }

  .logo {
    gap: 8px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero-section {
    padding: 40px 25px;
    min-height: 400px;
  }

  /* Hero pembe overlay'ini mobilde kaldır */
  .hero::before {
    display: none !important;
  }

  .hero-container {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 25px 10px;
    margin: 0;
    border: none;
    order: 2;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
  }

  .hero-title,
  .hero-subtitle {
    word-break: break-word;
    hyphens: auto;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-desc {
    order: 1;
  }

  .hero-rating {
    order: 2;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-rating .stars {
    order: 1;
  }

  .rating-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    order: 2;
  }

  .hero-slider {
    order: 1;
    max-width: 100%;
    min-height: 250px;
  }

  /* Hero bottom bar mobilde dikey */
  .hero-bottom-bar {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .bar-section {
    flex: none;
    height: auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .bar-section:not(:last-child)::after {
    display: none;
  }

  .bar-content {
    justify-content: flex-start;
  }

  .hero-title,
  .hero-subtitle {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.3;
  }

  .hero-description {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    max-width: 85%;
    margin: 0 auto 20px auto;
  }

  .hero-badge {
    margin-bottom: 20px;
    font-size: 12px;
    padding: 6px 15px;
  }

  .stars-rating {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 15px;
  }

  .hero-slider {
    max-width: 300px;
    height: 200px;
  }
}


/* İSTATİSTİK BANNER - BEYAZ KUTUCUK İLE + ANİMASYON */
.stats-banner {
  background: #f7f8fc;
  padding: 40px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.stat-item {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
  animation: floatUpDown 3s ease-in-out infinite;
}

.stat-item:nth-child(1) { 
  animation-delay: 0s; 
}
.stat-item:nth-child(2) { 
  animation-delay: 0.5s; 
}
.stat-item:nth-child(3) { 
  animation-delay: 1s; 
}
.stat-item:nth-child(4) { 
  animation-delay: 1.5s; 
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 114, 255, 0.25);
  animation-play-state: paused;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 18px;
  animation: iconBounce 2s ease-in-out infinite;
}

.stat-content {
  color: white;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  animation: numberPulse 2.5s ease-in-out infinite;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Animasyonlar */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes iconBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Service Platforms Section */
.service-platforms {
  background: var(--bg-secondary);
  padding: 80px 20px;
  text-align: center;
  transition: background 0.3s ease;
}

.platforms-service-header {
  margin-bottom: 60px;
}

.platforms-service-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.platforms-service-icon {
  background: linear-gradient(135deg, #e91e63, #f06292);
  width: 50px;
  height: 50px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  animation: pulse 3s infinite;
}

.platforms-service-icon i {
  font-size: 24px;
  color: white;
}

.platforms-service-header h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: 0 2px 4px rgba(233, 30, 99, 0.1);
}

.platforms-service-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 8px;
  text-align: center;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.service-highlight {
  color: #e91e63;
  font-weight: 600;
}

.service-platforms-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.service-platforms-visible {
  margin-bottom: 30px;
}

.service-platforms-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.service-platforms-hidden.show {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 50px;
}

.service-platforms-hidden.show .service-platform {
  animation: fadeInUpService 0.6s ease forwards;
}

@keyframes fadeInUpService {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-platforms-hidden.show .service-platform:nth-child(1) { animation-delay: 0.1s; }
.service-platforms-hidden.show .service-platform:nth-child(2) { animation-delay: 0.2s; }
.service-platforms-hidden.show .service-platform:nth-child(3) { animation-delay: 0.3s; }
.service-platforms-hidden.show .service-platform:nth-child(4) { animation-delay: 0.4s; }
.service-platforms-hidden.show .service-platform:nth-child(5) { animation-delay: 0.5s; }
.service-platforms-hidden.show .service-platform:nth-child(6) { animation-delay: 0.6s; }
.service-platforms-hidden.show .service-platform:nth-child(7) { animation-delay: 0.7s; }
.service-platforms-hidden.show .service-platform:nth-child(8) { animation-delay: 0.8s; }
.service-platforms-hidden.show .service-platform:nth-child(9) { animation-delay: 0.9s; }
.service-platforms-hidden.show .service-platform:nth-child(10) { animation-delay: 1.0s; }
.service-platforms-hidden.show .service-platform:nth-child(11) { animation-delay: 1.1s; }
.service-platforms-hidden.show .service-platform:nth-child(12) { animation-delay: 1.2s; }
.service-platforms-hidden.show .service-platform:nth-child(13) { animation-delay: 1.3s; }
.service-platforms-hidden.show .service-platform:nth-child(14) { animation-delay: 1.4s; }
.service-platforms-hidden.show .service-platform:nth-child(15) { animation-delay: 1.5s; }
.service-platforms-hidden.show .service-platform:nth-child(16) { animation-delay: 1.6s; }
.service-platforms-hidden.show .service-platform:nth-child(17) { animation-delay: 1.7s; }
.service-platforms-hidden.show .service-platform:nth-child(18) { animation-delay: 1.8s; }
.service-platforms-hidden.show .service-platform:nth-child(19) { animation-delay: 1.9s; }
.service-platforms-hidden.show .service-platform:nth-child(20) { animation-delay: 2.0s; }
.service-platforms-hidden.show .service-platform:nth-child(21) { animation-delay: 2.1s; }
.service-platforms-hidden.show .service-platform:nth-child(22) { animation-delay: 2.2s; }
.service-platforms-hidden.show .service-platform:nth-child(23) { animation-delay: 2.3s; }

.service-platform {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-platform:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(233, 30, 99, 0.2);
}

.service-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.service-platform:hover::before {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.service-platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-platform:hover .service-platform-icon {
  transform: scale(1.1);
}

.service-platform-icon i {
  font-size: 24px;
  color: #fff;
}

.service-platform-content {
  flex: 1;
  text-align: left;
}

.service-platform-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.service-platform-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  opacity: 0.8;
  transition: color 0.3s ease;
}

/* Platform Colors */
.service-platform.instagram .service-platform-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.service-platform.tiktok .service-platform-icon {
  background: linear-gradient(135deg, #000000, #ff0050);
}

.service-platform.youtube .service-platform-icon {
  background: linear-gradient(135deg, #FF0000, #cc0000);
}

.service-platform.twitter .service-platform-icon {
  background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.service-platform.facebook .service-platform-icon {
  background: linear-gradient(135deg, #1877F2, #0d65d9);
}

.service-platform.spotify .service-platform-icon {
  background: linear-gradient(135deg, #1DB954, #1ed760);
}

.service-platform.twitch .service-platform-icon {
  background: linear-gradient(135deg, #9146FF, #772ce8);
}

.service-platform.telegram .service-platform-icon {
  background: linear-gradient(135deg, #0088cc, #006bb3);
}

.service-platform.discord .service-platform-icon {
  background: linear-gradient(135deg, #7289da, #5b6eae);
}

.service-platform.linkedin .service-platform-icon {
  background: linear-gradient(135deg, #0077B5, #005885);
}

.service-platform.threads .service-platform-icon {
  background: linear-gradient(135deg, #000000, #333333);
}

.service-platform.pinterest .service-platform-icon {
  background: linear-gradient(135deg, #BD081C, #e60023);
}

.service-platform.snapchat .service-platform-icon {
  background: linear-gradient(135deg, #FFFC00, #ffeb3b);
}

.service-platform.reddit .service-platform-icon {
  background: linear-gradient(135deg, #FF4500, #cc3700);
}

.service-platform.whatsapp .service-platform-icon {
  background: linear-gradient(135deg, #25D366, #1ebe57);
}

.service-platform.vimeo .service-platform-icon {
  background: linear-gradient(135deg, #1ab7ea, #0e9cc7);
}

.service-platform.soundcloud .service-platform-icon {
  background: linear-gradient(135deg, #ff8500, #e67700);
}

.service-platform.clubhouse .service-platform-icon {
  background: linear-gradient(135deg, #F1C232, #d4a824);
}

.service-platform.onlyfans .service-platform-icon {
  background: linear-gradient(135deg, #00AFF0, #0088cc);
}

.service-platform.kick .service-platform-icon {
  background: linear-gradient(135deg, #53FC18, #41c213);
}

.service-platform.rumble .service-platform-icon {
  background: linear-gradient(135deg, #85C742, #6ba832);
}

.service-platform.medium .service-platform-icon {
  background: linear-gradient(135deg, #000000, #333333);
}

.service-platform.quora .service-platform-icon {
  background: linear-gradient(135deg, #B92B27, #a02622);
}

.service-platform.behance .service-platform-icon {
  background: linear-gradient(135deg, #1769ff, #0d47a1);
}

.service-platform.dribbble .service-platform-icon {
  background: linear-gradient(135deg, #ea4c89, #d63384);
}

.service-platform.github .service-platform-icon {
  background: linear-gradient(135deg, #333333, #24292e);
}

.service-platform.stack-overflow .service-platform-icon {
  background: linear-gradient(135deg, #FE7A16, #e6690f);
}

.service-platform.tumblr .service-platform-icon {
  background: linear-gradient(135deg, #001935, #00cf35);
}

.service-platform.flickr .service-platform-icon {
  background: linear-gradient(135deg, #0063dc, #0052ba);
}

.service-platform.viber .service-platform-icon {
  background: linear-gradient(135deg, #665CAC, #574a94);
}

.service-platform.line .service-platform-icon {
  background: linear-gradient(135deg, #00C300, #00a300);
}

.service-platform.wechat .service-platform-icon {
  background: linear-gradient(135deg, #7BB32E, #689929);
}

.service-platform.odnoklassniki .service-platform-icon {
  background: linear-gradient(135deg, #EE8208, #d47207);
}

.service-platform.vk .service-platform-icon {
  background: linear-gradient(135deg, #4A76A8, #3d6290);
}

.service-platform.dailymotion .service-platform-icon {
  background: linear-gradient(135deg, #0066CC, #0052a3);
}

.service-show-more-container {
  text-align: center;
  margin-top: 40px;
}

.service-show-more-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  text-decoration: none;
}

.service-show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
  background: linear-gradient(135deg, #c2185b, #e91e63);
}

.service-btn-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.service-show-more-btn:hover .service-btn-icon {
  transform: translateX(4px);
}

.service-show-more-btn.expanded .service-btn-icon {
  transform: rotate(180deg);
}

.service-show-more-btn.expanded .service-btn-text::after {
  content: "Daha Az Göster";
}

.service-show-more-btn.expanded .service-btn-text {
  font-size: 0;
}

.service-show-more-btn.expanded .service-btn-text::after {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
  }

  .platforms-service-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .service-platforms {
    padding: 60px 15px;
  }

  .service-platform-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .platforms-service-header h2 {
    font-size: 24px;
  }

  .platforms-service-subtitle {
    font-size: 14px;
  }

  .service-platform {
    padding: 16px;
  }

  .service-platform-icon {
    width: 45px;
    height: 45px;
  }

  .service-platform-icon i {
    font-size: 20px;
  }

  .service-platform-name {
    font-size: 15px;
  }

  .service-platform-desc {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .platforms-service-title-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .service-platforms {
    padding: 50px 15px;
  }

  .platforms-service-header h2 {
    font-size: 20px;
  }

  /* Login ve Register Modal - Extra Small Mobile */
  .login-image,
  .register-image {
    display: none !important;
  }

  .login-modal {
    background: #fff !important;
    width: 95vw !important;
    max-width: 350px !important;
    height: auto !important;
    max-height: 80vh !important;
    padding: 15px !important;
    border-radius: 18px !important;
    overflow-y: auto !important;
  }

  /* Scroll bar stili - extra small mobile */
  .login-modal::-webkit-scrollbar {
    width: 4px !important;
  }

  .login-modal::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 2px !important;
  }

  .login-modal::-webkit-scrollbar-thumb {
    background: #e91e63 !important;
    border-radius: 2px !important;
  }

  .login-modal::-webkit-scrollbar-thumb:hover {
    background: #c2185b !important;
  }

  .login-right {
    display: none !important;
  }

  /* Mobile Input Wrapper Fix */
  .input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }

  .input-wrapper i {
    position: absolute !important;
    left: 10px !important;
    color: #999 !important;
    font-size: 12px !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .input-wrapper input {
    width: 100% !important;
    padding: 10px 10px 10px 35px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
  }

  /* Modal overlay extra small mobile */
  .modal-overlay {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: none !important;
  }

  .service-show-more-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  background: #fff;
  padding: 80px 20px;
  margin: 0;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.why-choose-icon {
  background: linear-gradient(135deg, #e91e63, #f06292);
  width: 50px;
  height: 50px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.why-choose-icon i {
  font-size: 24px;
  color: white;
}

.why-choose-header h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* 3 Kolonlu Alan */
.three-column-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.column-left {
  display: flex;
  justify-content: center;
}

.oval-image {
  width: 400px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.oval-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Orta Kolon */
.column-center {
  padding: 0 20px;
}

.column-center h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.column-center p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hakkimizda-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.hakkimizda-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Video Oynatıcılar */
.video-players {
  display: flex;
  gap: 15px;
}

.video-player {
  width: 50px;
  height: 50px;
  background: #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-player:hover {
  background: #e91e63;
  transform: translateY(-2px);
}

.video-player i {
  color: white;
  font-size: 18px;
}

/* Sağ Kolon */
.column-right {
  display: flex;
  justify-content: center;
}

.right-box {
  width: 400px;
  height: 480px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.right-box .campaigns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.right-box .campaigns-header h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.right-box .campaigns-header i {
  color: white;
  font-size: 20px;
  opacity: 0.9;
}

/* Kampanya Items */
.right-box .campaign-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.right-box .campaign-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  min-height: 200px;
  flex: 1;
}

.right-box .campaign-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.right-box .campaign-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.right-box .campaign-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.right-box .campaign-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.right-box .campaign-content {
  flex: 1;
}

.right-box .campaign-content h5 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.right-box .campaign-status {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.right-box .campaign-status.active {
  background: rgba(76, 175, 80, 0.4);
  color: #ffffff;
  border: 1px solid rgba(76, 175, 80, 0.6);
}

.right-box .campaign-status.ending {
  background: rgba(255, 152, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(255, 152, 0, 0.6);
}

.right-box .campaign-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}

.right-box .campaign-item:hover .campaign-arrow {
  color: white;
  transform: translateX(3px);
}

/* YouTube Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: #e91e63;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: #c2185b;
  transform: scale(1.1);
}

.video-container {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-container iframe {
  display: block;
}

/* Mobile Responsive - 3 Kolonlu Neden Berksijen Layout */
@media (max-width: 768px) {
  /* 3 Kolonlu Layout - Mobilde tek kolon */
  .three-column-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
    margin-top: 30px;
  }

  /* Sol resim */
  .oval-image {
    width: 280px !important;
    height: 320px !important;
    margin: 0 auto;
  }

  .column-left {
    justify-content: center;
  }

  /* Orta yazı */
  .column-center {
    padding: 0;
    text-align: center;
  }

  .column-center h3 {
    font-size: 22px;
  }

  .column-center p {
    font-size: 15px;
  }

  .hakkimizda-btn {
    padding: 14px 28px;
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* Video oynatıcılar */
  .video-players {
    justify-content: center;
    gap: 12px;
  }

  .video-player {
    width: 45px;
    height: 45px;
  }

  .video-player i {
    font-size: 16px;
  }

  /* Sağ kutu */
  .column-right {
    justify-content: center;
  }

  .right-box {
    width: 100% !important;
    max-width: 350px;
    height: auto !important;
    min-height: 280px;
    margin: 0 auto;
    padding: 25px;
  }

  .right-box .campaigns-header h4 {
    font-size: 16px;
  }

  .right-box .campaigns-header i {
    font-size: 18px;
  }

  .right-box .campaign-item {
    padding: 12px;
  }

  .right-box .campaign-image {
    width: 45px;
    height: 45px;
  }

  .right-box .campaign-content h5 {
    font-size: 13px;
  }

  .right-box .campaign-status {
    font-size: 10px;
    padding: 4px 8px;
  }

  .right-box .campaign-arrow {
    font-size: 12px;
  }

  /* Video Modal Responsive */
  .video-modal-content {
    max-width: 95%;
    max-height: 80%;
  }

  .video-container iframe {
    width: 100%;
    height: 250px;
  }

  .video-modal-close {
    top: -40px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .order-search-modal {
    width: 95vw;
    height: 50vh;
    max-height: 50vh;
    min-height: 300px;
  }

  .search-overlay-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    width: calc(100% - 30px);
    max-width: 400px;
    margin: 0;
  }

  /* Search Form Mobile */
  .search-overlay-box .search-form {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .search-input-modal {
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
    height: 40px;
  }

  .search-btn-modal {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    justify-content: center;
  }

  /* Order Search Modal Mobile */
  .order-search-modal .modal-header {
    top: 30px;
    left: 15px;
    right: 15px;
    transform: none;
    width: auto;
    max-width: none;
  }

  .modal-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .modal-subtitle {
    font-size: 0.9rem;
  }

  /* Navbar Mobile Responsive */
  .navbar {
    justify-content: space-between;
  }

  /* Logo solda kalsın */
  .navbar .logo {
    order: 1;
  }

  /* Nav actions sağda (bildirim hamburger menüye yakın) */
  .nav-actions {
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }

  /* Mobile menu toggle en sağda */
  .mobile-menu-toggle {
    order: 3;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Eski nav-menu'yu mobilde gizle */
  .desktop-nav {
    display: none;
  }

  /* Mobile menu'yu mobilde aktif et */
  .mobile-menu-modal {
    display: block;
  }

  /* Mobilde giriş yap butonunu gizle */
  .nav-actions .btn-login {
    display: none !important;
  }

  /* Login ve Register Modal Mobile - G1.png & G2.png tasarımı */
  .login-image,
  .register-image {
    display: none !important;
  }

  .login-modal {
    background: #fff !important;
    width: 95vw !important;
    max-width: 400px !important;
    height: auto !important;
    max-height: 85vh !important;
    padding: 20px !important;
    border-radius: 20px !important;
    overflow-y: auto !important;
  }

  /* Scroll bar stili */
  .login-modal::-webkit-scrollbar {
    width: 6px !important;
  }

  .login-modal::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 3px !important;
  }

  .login-modal::-webkit-scrollbar-thumb {
    background: #e91e63 !important;
    border-radius: 3px !important;
  }

  .login-modal::-webkit-scrollbar-thumb:hover {
    background: #c2185b !important;
  }

  .login-right {
    display: none !important;
  }

  /* Mobile Input Wrapper Fix */
  .input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }

  .input-wrapper i {
    position: absolute !important;
    left: 12px !important;
    color: #999 !important;
    font-size: 14px !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .input-wrapper input {
    width: 100% !important;
    padding: 12px 12px 12px 40px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
  }

  /* Close button */
  .login-modal .modal-close {
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    z-index: 10 !important;
  }

  /* Modal overlay koyu */
  .modal-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: none !important;
  }

  /* Mobilde topbar dark mode toggle'ı ve email'i gizle */
  .topbar .theme-toggle,
  .topbar .email-text {
    display: none !important;
  }

  /* Mobilde diğer iconları gizle, sadece bildirim ve çark kalsın */
  .nav-actions .order-search-btn,
  .nav-actions .cart-btn,
  .nav-actions .free-tools-btn {
    display: none !important;
  }

  /* Bildirim ve çark iconlarını mobilde göster */
  .nav-actions .notification-wrapper,
  .nav-actions .wishlist-btn {
    display: flex !important;
  }

  .mobile-menu-toggle {
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }

  /* Eski nav-menu'yu mobilde gizle */
  .desktop-nav {
    display: none;
  }

  /* Mobile menu'yu mobilde aktif et */
  .mobile-menu-modal {
    display: block;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .navbar {
    flex-wrap: wrap;
    position: relative;
    z-index: 10000;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu.active .mobile-login-link {
    display: flex;
  }

  .nav-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-actions .icon-btn {
    width: 35px;
    height: 35px;
  }

  .nav-actions .icon-btn i {
    font-size: 14px;
  }

  .nav-actions .badge {
    font-size: 10px;
    min-width: 16px;
    height: 16px;
  }

  .btn-login {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Extra Small Mobile (480px ve altı) */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 20px;
    min-height: 350px;
  }

  /* Hero pembe overlay'ini mobilde kaldır */
  .hero::before {
    display: none !important;
  }

  .hero-container {
    flex-direction: column-reverse;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
  }

  .hero-content {
    padding: 20px 8px;
    margin: 0;
    border: none;
    order: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
  }

  .hero-title,
  .hero-subtitle {
    word-break: break-word;
    hyphens: auto;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-desc {
    order: 1;
  }

  .hero-rating {
    order: 2;
    justify-content: center;
    margin-top: 15px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-rating .stars {
    order: 1;
  }

  .rating-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    order: 2;
  }

  .hero-slider {
    order: 1;
    max-width: 100%;
    height: 200px;
    min-height: 200px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.2;
  }

  .hero-description {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    max-width: 80%;
    margin: 0 auto 15px auto;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 15px;
  }

  .stars-rating {
    padding: 8px 12px;
    gap: 6px;
  }

  /* Hero bottom bar mobilde dikey */
  .hero-bottom-bar {
    flex-direction: column;
    height: auto;
    padding: 15px;
    gap: 12px;
  }

  .bar-section {
    flex: none;
    height: auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .bar-section:not(:last-child)::after {
    display: none;
  }

  .bar-content {
    justify-content: flex-start;
  }

  /* Eski nav-menu'yu mobilde gizle */
  .desktop-nav {
    display: none;
  }

  /* Mobile menu'yu mobilde aktif et */
  .mobile-menu-modal {
    display: block;
  }

  /* Mobilde topbar dark mode toggle'ı ve email'i gizle */
  .topbar .theme-toggle,
  .topbar .email-text {
    display: none !important;
  }

  /* Mobilde diğer iconları gizle, sadece bildirim ve çark kalsın */
  .nav-actions .order-search-btn,
  .nav-actions .cart-btn,
  .nav-actions .free-tools-btn,
  .nav-actions .btn-login {
    display: none !important;
  }

  /* Bildirim ve çark iconlarını mobilde göster */
  .nav-actions .notification-wrapper,
  .nav-actions .wishlist-btn {
    display: flex !important;
  }

  .navbar {
    padding: 12px 15px;
    gap: 20px;
    position: relative;
    z-index: 10000;
    justify-content: space-between;
  }

  /* Logo solda kalsın */
  .navbar .logo {
    order: 1;
  }

  /* Mobile menu toggle en sağda */
  .mobile-menu-toggle {
    order: 3;
  }

  /* Nav actions sağda (bildirim hamburger menüye yakın) */
  .nav-actions {
    order: 2;
    display: flex !important;
    margin-left: auto;
    margin-right: 10px;
  }

  /* Topbar Extra Small Mobile */
  .topbar {
    padding: 6px 15px;
    font-size: 11px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
  }

  .topbar-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    order: 1;
    flex: 1;
  }

  .contact-icons {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    order: 2;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .email-text {
    font-size: 11px;
  }

  .theme-toggle {
    gap: 4px;
  }

  .toggle-switch {
    width: 35px;
    height: 18px;
  }

  .toggle-slider {
    width: 14px;
    height: 14px;
  }

  /* Navbar Extra Small Mobile */
  .navbar {
    padding: 12px 15px;
    gap: 15px;
    position: relative;
    z-index: 10000;
    justify-content: space-between;
  }

  /* Logo solda kalsın */
  .navbar .logo {
    order: 1;
  }

  /* Mobile menu toggle en sağda */
  .mobile-menu-toggle {
    order: 3;
  }

  /* Nav actions sağda (bildirim hamburger menüye yakın) */
  .nav-actions {
    order: 2;
    display: flex !important;
    margin-left: auto;
    margin-right: 10px;
  }

  .logo {
    gap: 6px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-icon {
    gap: 2px;
  }

  .logo-icon i {
    font-size: 12px;
  }

  .mobile-menu-toggle {
    width: 30px;
    height: 30px;
  }

  .mobile-menu-toggle span {
    height: 2px;
  }

  .oval-image {
    width: 220px !important;
    height: 260px !important;
  }

  .right-box {
    max-width: 300px;
    padding: 20px;
  }

  .column-center h3 {
    font-size: 20px;
  }

  .column-center p {
    font-size: 14px;
  }

  .hakkimizda-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .right-box .campaigns-header h4 {
    font-size: 14px;
  }

  .right-box .campaign-content h5 {
    font-size: 12px;
  }

  .video-container iframe {
    height: 200px;
  }
}

.why-choose-content {
  display: grid;
  grid-template-columns: 400px 1fr 350px;
  gap: 40px;
  align-items: start;
}

.why-choose-content.no-image-layout {
  grid-template-columns: 1fr 350px;
}

.why-choose-left {
  position: relative;
}

.why-choose-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.why-choose-center {
  padding: 20px 0;
}

.why-choose-main-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.highlight-text {
  color: #e91e63;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-main-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.why-choose-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  margin: 20px 0 30px 0;
}

.why-choose-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
  background: linear-gradient(135deg, #c2185b, #e91e63);
}

.video-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.video-thumb {
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.video-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(240, 98, 146, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb:hover::before {
  opacity: 1;
}

.video-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.play-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.play-icon i {
  color: #333;
  font-size: 14px;
  margin-left: 2px;
}

.why-choose-right {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 24px;
  padding: 24px;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.campaigns-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.campaigns-header h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.campaigns-highlight {
  color: #e91e63;
}

.campaigns-header i {
  font-size: 20px;
  color: #e91e63;
}

.campaign-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.campaign-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
  border-color: rgba(233, 30, 99, 0.3);
}

.campaign-image {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.campaign-content {
  flex: 1;
}

.campaign-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.campaign-status {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.campaign-status.active {
  color: #ff4757;
}

.campaign-status.ending {
  color: #ffa502;
}

.campaign-arrow {
  color: #e91e63;
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.campaign-item:hover .campaign-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Why Choose Us Responsive Design */
@media (max-width: 1200px) {
  .why-choose-content {
    grid-template-columns: 350px 1fr 320px;
    gap: 30px;
  }

  .why-choose-main-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .why-choose-section {
    padding: 60px 20px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .why-choose-left {
    max-width: 400px;
    margin: 0 auto;
  }

  .why-choose-center {
    padding: 0;
  }

  .why-choose-main-content h3 {
    font-size: 24px;
  }

  .why-choose-header h2 {
    font-size: 28px;
  }

  .video-thumbnails {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 50px 15px;
  }

  .why-choose-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .why-choose-header h2 {
    font-size: 24px;
  }

  .why-choose-main-content h3 {
    font-size: 22px;
  }

  .why-choose-main-content p {
    font-size: 15px;
  }

  .campaigns-section {
    max-width: 400px;
    margin: 0 auto;
  }

  .campaign-item {
    padding: 12px;
  }

  .campaign-content h5 {
    font-size: 13px;
  }

  .video-thumbnails {
    gap: 8px;
  }

  .video-thumb {
    width: 70px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 15px;
  }

  .why-choose-header h2 {
    font-size: 20px;
  }

  .why-choose-main-content h3 {
    font-size: 20px;
  }

  .why-choose-main-content p {
    font-size: 14px;
  }

  .why-choose-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .campaigns-header h4 {
    font-size: 16px;
  }

  .campaign-item {
    padding: 10px;
  }

  .campaign-image {
    width: 40px;
    height: 40px;
  }

  .campaign-content h5 {
    font-size: 12px;
  }

  .campaign-status {
    font-size: 11px;
  }

  .video-thumb {
    width: 60px;
    height: 45px;
  }

  .play-icon {
    width: 24px;
    height: 24px;
  }

  .play-icon i {
    font-size: 12px;
  }
}

/* Packages Section */
.packages-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.packages-header {
  margin-bottom: 50px;
}

.packages-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.packages-icon {
  background: linear-gradient(135deg, #e91e63, #f06292);
  width: 50px;
  height: 50px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.packages-icon i {
  font-size: 24px;
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(233, 30, 99, 0.6);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  }
}

.packages-header h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: 0 2px 4px rgba(233, 30, 99, 0.1);
}

.packages-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
  text-align: center;
  opacity: 0.9;
}

.trend-highlight {
  color: #e91e63;
  font-weight: 600;
}

.packages-header p {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.packages-header p i {
  color: #e91e63;
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.package-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(71, 83, 219, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #333333;
  text-align: center;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4753db, #0072ff);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(71, 83, 219, 0.2);
  border-color: rgba(71, 83, 219, 0.3);
}

.package-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  text-align: center;
}

.package-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4753db, #0072ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: white;
  font-size: 20px;
}

.package-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-bottom: 5px;
}

.package-subtitle {
  color: #666666;
  font-size: 14px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(71, 83, 219, 0.05);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(71, 83, 219, 0.1);
  text-align: center;
}

.feature-icon {
  width: 35px;
  height: 35px;
  background: rgba(71, 83, 219, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #4753db;
  font-size: 14px;
}

.feature-text {
  text-align: center;
}

.feature-title {
  font-size: 12px;
  color: #4753db;
  margin-bottom: 2px;
  font-weight: 600;
  text-align: center;
}

.feature-value {
  font-size: 14px;
  color: #333333;
  text-align: center;
}

.price-section {
  margin: 30px 0;
  text-align: center;
}

.price-old {
  color: #888;
  text-decoration: line-through;
  font-size: 16px;
  margin-bottom: 5px;
}

.price-new {
  font-size: 32px;
  font-weight: bold;
  color: #4caf50;
}

/* Minimal Package Cards */
.package-card-minimal {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  animation: floating 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Stagger animation for each card */
.slider-track .package-card-minimal:nth-child(1) {
  animation-delay: 0s;
}

.slider-track .package-card-minimal:nth-child(2) {
  animation-delay: 0.5s;
}

.slider-track .package-card-minimal:nth-child(3) {
  animation-delay: 1s;
}

.slider-track .package-card-minimal:nth-child(4) {
  animation-delay: 1.5s;
}

.slider-track .package-card-minimal:nth-child(5) {
  animation-delay: 2s;
}

.slider-track .package-card-minimal:nth-child(6) {
  animation-delay: 2.5s;
}

.slider-track .package-card-minimal:nth-child(7) {
  animation-delay: 0.8s;
}

.slider-track .package-card-minimal:nth-child(8) {
  animation-delay: 1.3s;
}

.package-card-minimal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
  border-color: #e91e63;
}

.package-minimal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f5f5f5;
}

.package-minimal-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.package-minimal-platform i {
  font-size: 20px;
  color: #e91e63;
}

.favorite-btn-minimal {
  background: none;
  border: none;
  font-size: 18px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.favorite-btn-minimal:hover {
  color: #e91e63;
}

.package-minimal-content {
  text-align: center;
}

.package-minimal-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

/* Package Features Container */
.package-features-container {
  margin-bottom: 24px;
}

.package-minimal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.package-features-hidden {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.package-features-hidden.show {
  max-height: 200px;
  opacity: 1;
}

.features-toggle-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-bottom: 16px;
}

.features-toggle-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.features-toggle-btn i {
  transition: transform 0.3s ease;
  font-size: 10px;
}

.features-toggle-btn.expanded i {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .package-features-hidden {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .package-minimal-features,
  .package-features-hidden {
    grid-template-columns: 1fr;
  }
}

.feature-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: #fce4ec;
  border-radius: 12px;
  border: 1px solid #f8bbd9;
}

.feature-minimal i {
  font-size: 16px;
  color: #e91e63;
}

.feature-minimal span {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: center;
}

.package-minimal-price {
  margin-bottom: 20px;
}

.price-minimal-old {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-minimal-new {
  font-size: 24px;
  font-weight: 700;
  color: #4caf50;
}

.package-minimal-btn {
  width: 100%;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-minimal-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Packages Slider */
.packages-slider-container {
  position: relative;
  margin-top: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.packages-slider {
  overflow: hidden;
  margin: 0 60px;
  border-radius: 16px;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

.slider-track .package-card-minimal {
  flex: 0 0 auto;
  width: calc(25% - 22.5px);
  min-width: 280px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.slider-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 1200px) {
  .slider-track .package-card-minimal {
    width: calc(33.333% - 20px);
  }
}

@media (max-width: 900px) {
  .slider-track .package-card-minimal {
    width: calc(50% - 15px);
  }

  .packages-slider {
    margin: 0 40px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .slider-track .package-card-minimal {
    width: calc(100% - 0px);
  }

  .packages-slider {
    margin: 0 30px;
  }
}

.buy-button {
  width: 100%;
  background: linear-gradient(135deg, #4753db, #0072ff);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(71, 83, 219, 0.3);
}

.favorite-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 24px;
  color: #ffd700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

/* About */
.about {
  padding: 40px 20px;
  background: #f5f6fa;
}

.about h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-center h3 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.about-center .highlight {
  color: #d6004d;
}

.about-center p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #444;
}

.btn-about {
  display: inline-block;
  margin-top: 10px;
  background: #d6004d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.about-videos {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.video {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-right {
  background: #1f1f2b;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
}

.about-right h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-right .highlight {
  color: #d6004d;
}

.campaign {
  display: flex;
  align-items: center;
  background: #2b2b3b;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
  gap: 12px;
}

.campaign img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.campaign .text {
  flex: 1;
}

.campaign .text strong {
  display: block;
  font-size: 14px;
}

.campaign .status {
  font-size: 12px;
}

.status.red { color: #ff4d4f; }
.status.orange { color: #ffa940; }

.campaign a {
  color: #fff;
  font-size: 18px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.divider {
  border: none;
  border-top: 1px solid #dcdfe6;
  margin: 0 0 20px 0;
}

/* Why Choose Us */
.why-choose-us {
  background: #f1f1f1;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.section-header .subtitle {
  color: #4753db;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.section-header p {
  color: #555;
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}

.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 300px;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  text-align: left;
}

.card-content .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.card-content p {
  font-size: 14px;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .menu {
    gap: 16px;
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 14px 20px;
    position: relative;
    z-index: 10000;
    justify-content: space-between;
  }

  /* Logo solda kalsın */
  .navbar .logo {
    order: 1;
  }

  /* Mobile menu toggle en sağda */
  .mobile-menu-toggle {
    order: 3;
  }

  /* Nav actions sağda (bildirim hamburger menüye yakın) */
  .nav-actions {
    order: 2;
    display: flex !important;
    margin-left: auto;
    margin-right: 10px;
  }
  .menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .nav-actions {
    justify-content: flex-start;
  }
  .hero-container {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 16px;
  }

  .hero-slider {
    order: 1;
    max-width: 100%;
    min-height: 220px;
    padding: 0;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    padding: 25px 8px;
    margin: 0;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
  }

  .hero-title,
  .hero-subtitle {
    word-break: break-word;
    hyphens: auto;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-desc {
    order: 1;
  }

  .hero-rating {
    order: 2;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-rating .stars {
    order: 1;
  }

  .rating-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    order: 2;
  }

  /* Hero bottom bar mobilde dikey */
  .hero-bottom-bar {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .bar-section {
    flex: none;
    height: auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .bar-section:not(:last-child)::after {
    display: none;
  }

  .bar-content {
    justify-content: flex-start;
  }

  /* Eski nav-menu'yu mobilde gizle */
  .desktop-nav {
    display: none;
  }

  /* Mobile menu'yu mobilde aktif et */
  .mobile-menu-modal {
    display: block;
  }

  /* Mobilde topbar dark mode toggle'ı ve email'i gizle */
  .topbar .theme-toggle,
  .topbar .email-text {
    display: none !important;
  }

  /* Mobilde diğer iconları gizle, sadece bildirim ve çark kalsın */
  .nav-actions .order-search-btn,
  .nav-actions .cart-btn,
  .nav-actions .free-tools-btn,
  .nav-actions .btn-login {
    display: none !important;
  }

  /* Bildirim ve çark iconlarını mobilde göster */
  .nav-actions .notification-wrapper,
  .nav-actions .wishlist-btn {
    display: flex !important;
  }
  .hero-content h2 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .topbar {
    padding: 6px 20px;
    flex-direction: column;
    gap: 10px;
  }
  .packages-container {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .additional-platforms {
    grid-template-columns: repeat(3, 1fr);
  }
  .platform {
    width: 160px;
    height: 140px;
  }
  .platform-icon {
    width: 40px;
    height: 40px;
  }
  .platform-icon i {
    font-size: 20px;
  }
  .platform-name {
    font-size: 14px;
  }
  .platform-desc {
    font-size: 11px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    height: 250px;
  }
  /* Stats Banner Mobile */
  .stats-banner {
    padding: 30px 15px;
  }

  .stats-container {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 12px;
    line-height: 1.3;
  }

  .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* Packages Section Mobile */
  .packages-section {
    padding: 40px 15px;
  }

  .packages-header {
    margin-bottom: 30px;
  }

  .packages-title-wrapper {
    gap: 10px;
    flex-direction: column;
  }

  .packages-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .packages-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .packages-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .additional-platforms.show {
    max-height: 1200px;
  }
}

@media (max-width: 480px) {
  /* Stats Banner Extra Small Mobile */
  .stats-banner {
    padding: 25px 10px;
  }

  .stats-container {
    padding: 15px 10px;
    border-radius: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 15px 12px;
  }

  .stat-number {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.2;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* Packages Section Extra Small Mobile */
  .packages-section {
    padding: 30px 10px;
  }

  .packages-header {
    margin-bottom: 25px;
  }

  .packages-title-wrapper {
    gap: 8px;
  }

  .packages-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .packages-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .packages-subtitle {
    font-size: 12px;
    padding: 0 5px;
    line-height: 1.4;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .additional-platforms {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform {
    width: 140px;
    height: 120px;
  }
  .platform-icon {
    width: 35px;
    height: 35px;
  }
  .platform-icon i {
    font-size: 18px;
  }
  .platform-name {
    font-size: 13px;
  }
  .platform-desc {
    font-size: 10px;
  }
  .additional-platforms.show {
    max-height: 1000px;
  }
}

/* Static Products Container with Slider */
.static-products-container {
  position: relative;
  padding: 40px 80px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.product-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
  width: calc(4 * 280px + 3 * 20px); /* Exactly 4 cards + 3 gaps */
  margin: 0 auto;
}

.product-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
}

.product-cards-row {
  display: flex;
  gap: 20px;
  min-width: 100%;
  flex-shrink: 0;
}

.product-nav {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.product-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 24px;
  border: none;
  background: white;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
  font-size: 18px;
}

.product-nav-btn:hover {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.product-nav-btn:active {
  transform: scale(0.95);
}

.product-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.8);
}

.product-nav-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  transform: scale(1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
  width: 280px;
  flex-shrink: 0;
  aspect-ratio: 0.75;
  box-sizing: border-box;
  animation: cardSlideUp 0.6s ease-out, floatingCard 3s ease-in-out infinite;
  animation-fill-mode: both;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.2);
  animation-play-state: paused;
}

/* Floating animation for cards */
@keyframes cardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Continuous floating animation */
@keyframes floatingCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Staggered animation delay for cards with different floating rhythms */
.product-card:nth-child(1) {
  animation-delay: 0.1s, 0s;
  animation-duration: 0.6s, 3.0s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s, 0.5s;
  animation-duration: 0.6s, 3.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s, 1.0s;
  animation-duration: 0.6s, 2.8s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s, 1.5s;
  animation-duration: 0.6s, 3.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.1s, 2.0s;
  animation-duration: 0.6s, 2.6s;
}
.product-card:nth-child(6) {
  animation-delay: 0.2s, 2.5s;
  animation-duration: 0.6s, 3.6s;
}
.product-card:nth-child(7) {
  animation-delay: 0.3s, 0.8s;
  animation-duration: 0.6s, 2.9s;
}
.product-card:nth-child(8) {
  animation-delay: 0.4s, 1.3s;
  animation-duration: 0.6s, 3.1s;
}

/* Subtle floating animation when visible */
.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
  transition: all 0.3s ease;
}

.product-card:hover .product-main-title {
  color: #e91e63;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  position: relative;
}

.product-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e91e63;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.product-title {
  flex: 1;
  text-align: left;
  margin-left: 10px;
}

.product-title h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.product-main-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 10px 0 20px 0;
  text-align: center;
}

.product-features {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.feature-item {
  background: rgba(233, 30, 99, 0.05);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.feature-item i {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(233, 30, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  font-size: 10px;
}

.feature-item span {
  font-size: 10px;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

.hidden-feature {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.hidden-feature.show {
  display: flex;
  opacity: 1;
}

.show-more-btn {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.show-more-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-1px);
}

.show-more-btn.expanded {
  background: linear-gradient(135deg, #c2185b, #e91e63);
}

.show-more-btn i {
  font-size: 8px;
  transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
  transform: rotate(45deg);
}

.product-pricing {
  text-align: center;
  margin-bottom: 18px;
}

.price-old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  color: #4caf50;
}

/* Discount Badge */
.discount-badge {
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
  animation: discountPulse 2s infinite;
  letter-spacing: 0.3px;
}

.discount-badge i {
  font-size: 7px;
}

@keyframes discountPulse {
  0%, 70%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
  }
  35% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
  }
}

.price-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 26px;
  height: 26px;
  border-radius: 24px;
  background: #f5f5f5;
  display: none; /* Favorilere ekleme özelliği kaldırıldı */
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  z-index: 10;
}

.price-heart:hover {
  background: #e91e63;
  color: white;
  transform: scale(1.1);
}

/* Tooltip for heart button */
.price-heart::before {
  content: 'Favorilere Ekle';
  position: absolute;
  top: 30px;
  right: -10px;
  background: #000;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid white;
}

.price-heart:hover::before {
  opacity: 1;
  visibility: visible;
}

.product-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}



/* Responsive Design for Slider Products */
@media (max-width: 900px) {
  .static-products-container {
    padding: 30px 60px;
  }

  .product-card {
    width: 260px;
    padding: 18px 15px;
  }

  .product-slider-wrapper {
    width: calc(3 * 260px + 2 * 18px); /* 3 cards on tablet */
  }

  .product-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .product-nav {
    left: 15px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .static-products-container {
    padding: 30px 50px;
  }

  .product-card {
    width: 240px;
    padding: 16px 12px;
  }

  .product-slider-wrapper {
    width: calc(2 * 240px + 1 * 20px); /* 2 cards on mobile */
  }

  .product-main-title {
    font-size: 16px;
  }

  .feature-item span {
    font-size: 9px;
  }

  .product-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .static-products-container {
    padding: 20px 40px;
  }

  .product-card {
    width: 220px;
    padding: 15px 10px;
  }

  .product-slider-wrapper {
    width: calc(2 * 220px + 1 * 20px); /* 2 cards on small mobile */
  }

  .product-nav {
    left: 10px;
    right: 10px;
  }

  .product-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .static-products-container {
    padding: 20px 30px;
  }

  .product-card {
    width: 200px;
    padding: 15px 8px;
  }

  .product-slider-wrapper {
    width: 200px; /* 1 card on very small mobile */
  }

  .product-main-title {
    font-size: 14px;
  }

  /* Order Search Modal - Extra Small Mobile */
  .order-search-modal {
    height: 45vh;
    max-height: 45vh;
    min-height: 280px;
  }

  .order-search-modal .modal-header {
    top: 25px;
    left: 10px;
    right: 10px;
  }

  .modal-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .modal-subtitle {
    font-size: 0.85rem;
  }

  .search-overlay-box {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
    width: calc(100% - 20px);
    max-width: 350px;
    margin: 0;
  }

  /* Search Form Extra Small Mobile */
  .search-overlay-box .search-form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .search-input-modal {
    width: 100%;
    font-size: 13px;
    padding: 9px 12px;
    height: 36px;
  }

  .search-btn-modal {
    width: 100%;
    padding: 9px 14px;
    font-size: 13px;
    justify-content: center;
  }
  }

  .feature-item span {
    font-size: 8px;
  }

  .product-nav {
    left: 5px;
    right: 5px;
  }

  .product-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
}

/* Customer Reviews Section */
.customer-reviews {
  background: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.customer-reviews::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(0,0,0,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(0,0,0,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.reviews-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  text-shadow: none;
}

.reviews-header p {
  font-size: 18px;
  color: #666666;
  font-weight: 300;
  text-shadow: none;
}

.reviews-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.reviews-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(103, 126, 234, 0.2);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

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

.review-avatar {
  position: relative;
}

.review-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 24px;
  border: 3px solid rgba(103, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.review-card:hover .review-avatar img {
  border-color: rgba(103, 126, 234, 0.6);
  transform: scale(1.1);
}

.review-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.review-stars i {
  color: #ffd700;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.review-date {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}

.review-content {
  margin-bottom: 20px;
  position: relative;
}

.review-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 25px;
  border: 1px solid rgba(103, 126, 234, 0.2);
  width: fit-content;
}

.review-platform i {
  font-size: 16px;
  color: #667eea;
}

.review-platform span {
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
}

.review-nav {
  width: 60px;
  height: 60px;
  border-radius: 24px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  color: #4753db;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

.review-nav:hover {
  background: #4753db;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(71, 83, 219, 0.3);
  color: #ffffff;
  border-color: #4753db;
}

.review-nav:active {
  transform: scale(0.95);
}

.review-nav.prev {
  margin-right: -15px;
}

.review-nav.next {
  margin-left: -15px;
}

.reviews-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 24px;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: #4753db;
  box-shadow: 0 0 0 3px rgba(71, 83, 219, 0.3);
  transform: scale(1.2);
}

.indicator:hover {
  background: #6b7280;
  transform: scale(1.1);
}

/* Review Cards Animation */
@keyframes reviewSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.review-card {
  animation: reviewSlideIn 0.6s ease-out;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

/* Star rating animation */
@keyframes starGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 3px #ffd700);
  }
}

.review-stars:hover i {
  animation: starGlow 1s ease-in-out infinite;
}

.review-stars i:nth-child(1) { animation-delay: 0s; }
.review-stars i:nth-child(2) { animation-delay: 0.1s; }
.review-stars i:nth-child(3) { animation-delay: 0.2s; }
.review-stars i:nth-child(4) { animation-delay: 0.3s; }
.review-stars i:nth-child(5) { animation-delay: 0.4s; }

/* Reviews Mobile Responsive */
@media (max-width: 992px) {
  .customer-reviews {
    padding: 60px 15px;
  }

  .reviews-header h2 {
    font-size: 28px;
  }

  .reviews-header p {
    font-size: 16px;
  }

  .reviews-container {
    gap: 20px;
  }

  .review-card {
    flex: 0 0 calc(50% - 15px);
    padding: 25px;
  }

  .review-card::before {
    font-size: 60px;
    top: -5px;
  }

  .review-nav {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .review-nav.prev {
    margin-right: -10px;
  }

  .review-nav.next {
    margin-left: -10px;
  }
}

@media (max-width: 768px) {
  .customer-reviews {
    padding: 50px 15px;
  }

  .reviews-header {
    margin-bottom: 40px;
  }

  .reviews-header h2 {
    font-size: 24px;
  }

  .reviews-header p {
    font-size: 14px;
  }

  .reviews-container {
    flex-direction: column;
    gap: 30px;
  }

  .review-card {
    flex: 0 0 100%;
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
  }

  .review-card::before {
    font-size: 50px;
    top: 0;
  }

  .review-header {
    gap: 12px;
    margin-bottom: 15px;
  }

  .review-avatar img {
    width: 50px;
    height: 50px;
  }

  .review-info h4 {
    font-size: 16px;
  }

  .review-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-platform {
    padding: 6px 12px;
  }

  .review-platform i {
    font-size: 14px;
  }

  .review-platform span {
    font-size: 12px;
  }

  .review-nav {
    position: static;
    margin: 0;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .reviews-indicators {
    margin-top: 30px;
    gap: 8px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .customer-reviews {
    padding: 40px 10px;
  }

  .reviews-header h2 {
    font-size: 22px;
  }

  .review-card {
    padding: 15px;
    max-width: 350px;
  }

  .review-content p {
    font-size: 13px;
  }

  .review-info h4 {
    font-size: 15px;
  }

  .review-stars i {
    font-size: 12px;
  }

  .review-date {
    font-size: 11px;
  }
}

/* Hero Slider */
.hero-slider {
  flex: 1;
  max-width: min(400px, 90vw);
  height: 100%;
  min-height: 300px;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(233, 30, 99, 0.3);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  border-radius: 24px;
}

.slider-image.active {
  opacity: 1;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 99, 0.1);
  color: #e91e63;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 2px solid rgba(233, 30, 99, 0.2);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(233, 30, 99, 0.15);
  transform: translateY(-2px);
}

.hero-badge i {
  color: #ffd700;
  font-size: 16px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.625rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.hero-subtitle {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #e91e63;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  font-family: 'Inter', sans-serif;
}

.hero-desc {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 31.25rem;
  transition: color 0.3s ease;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars i {
  color: #ffd700;
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.rating-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.rating-badge i {
  color: #e91e63;
  font-size: 18px;
}

.rating-badge span {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 20px;
  transition: color 0.3s ease;
}

.play-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.play-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 35px rgba(233, 30, 99, 0.5);
}

.play-btn i {
  margin-left: 3px;
  font-size: 18px;
}

/* Hero Right */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-animation {
  width: 400px !important;
  height: auto !important;
  animation: heroFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  display: block !important;
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10;
}

.float-animation:hover {
  transform: scale(1.05);
}

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

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


/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 30px 20px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 12px;
  }

  .hero-title,
  .hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-desc {
    max-width: 90%;
    margin: 0 auto 1.5rem auto;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    line-height: 1.4;
  }

  .hero-rating {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
  }

  .stars {
    font-size: 16px;
  }

  .rating-badge {
    font-size: 14px;
  }

  .hero-image {
    max-width: 400px;
  }
}

/* Touch feedback for mobile */
.touch-active {
  transform: scale(0.95);
  opacity: 0.8;
  transition: all 0.15s ease;
}

/* Contact Page Styles */
.contact-page {
  background: linear-gradient(to bottom, #1a202c, #2d3748);
  min-height: 100vh;
  padding: 60px 0;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-icon-wrapper {
  width: 120px;
  height: 120px;
  background: #e91e63;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.contact-icon-wrapper i {
  font-size: 48px;
  color: white;
}

.contact-header h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-header p {
  color: #cbd5e0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(233, 30, 99, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-text {
  margin-bottom: 40px;
}

.contact-info-text p {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(233, 30, 99, 0.05);
  transform: translateX(10px);
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.contact-method-icon.phone {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.contact-method-icon.whatsapp {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.contact-method-icon.telegram {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.contact-method-icon.email {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.contact-method-icon.location {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.contact-method-info h3 {
  color: #2d3748;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-method-info p {
  color: #4a5568;
  font-size: 15px;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h2 {
  color: #2d3748;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e91e63;
  background: white;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.phone-input {
  display: flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f7fafc;
  transition: all 0.3s ease;
  overflow: hidden;
}

.phone-input:focus-within {
  border-color: #e91e63;
  background: white;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.country-code {
  background: #e2e8f0;
  padding: 15px 20px;
  font-weight: 600;
  color: #4a5568;
}

.phone-input input {
  border: none;
  background: transparent;
  padding: 15px 20px;
  flex: 1;
  font-size: 16px;
}

.phone-input input:focus {
  outline: none;
  box-shadow: none;
}

.submit-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
  .contact-page {
    padding: 40px 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .contact-icon-wrapper i {
    font-size: 32px;
  }

  .contact-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 30px;
  }

  .contact-info-text {
    margin-bottom: 30px;
  }

  .contact-method {
    padding: 15px;
  }

  .contact-method-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-method-info h3 {
    font-size: 16px;
  }

  .contact-method-info p {
    font-size: 14px;
  }

  .contact-form-section {
    padding: 30px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 30px 0;
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-header {
    margin-bottom: 30px;
  }

  .contact-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .contact-icon-wrapper i {
    font-size: 28px;
  }

  .contact-header h1 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 15px;
  }

  .contact-content {
    gap: 30px;
  }

  .contact-info {
    padding: 25px;
    border-radius: 20px;
  }

  .contact-info-text {
    margin-bottom: 25px;
  }

  .contact-method {
    padding: 12px;
  }

  .contact-method-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-form-section {
    padding: 25px;
    border-radius: 20px;
  }

  .form-header h2 {
    font-size: 22px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
  }

  .phone-input input {
    padding: 12px 15px;
  }

  .country-code {
    padding: 12px 15px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Mobile-first improvements */
@media (max-width: 320px) {
  .topbar {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .topbar-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    order: 1;
  }

  .topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    order: 2;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .hero-section {
    padding: 2rem 1.5rem;
    min-height: 300px;
  }

  /* Hero pembe overlay'ini mobilde kaldır */
  .hero::before {
    display: none !important;
  }

  .icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* Improve text readability on mobile */
@media (max-width: 768px) {
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  /* Better tap targets */
  .btn, .icon-btn, .nav-link {
    -webkit-tap-highlight-color: rgba(233, 30, 99, 0.3);
  }

  /* Remove hover effects on mobile */
  @media (hover: none) {
    .nav-link:hover,
    .icon-btn:hover,
    .btn:hover {
      background: initial;
      color: initial;
      transform: none;
    }
  }
}

/* Modern Mobile Menu */
.mobile-menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.mobile-menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 400px;
  max-height: 85vh;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-modal.active .mobile-menu-content {
  transform: translate(-50%, -50%) scale(1);
}

.mobile-menu-header {
  background: #e91e63;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.mobile-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-login-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-theme-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-theme-toggle.active {
  background: rgba(255, 255, 255, 0.4);
}

.mobile-theme-toggle.active .fa-sun {
  color: #ffd700;
}

.mobile-theme-toggle.active .fa-moon {
  color: #87ceeb;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.mobile-menu-items {
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-item:hover {
  background: rgba(233, 30, 99, 0.05);
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

.mobile-menu-icon {
  width: 40px;
  height: 40px;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #e91e63;
  font-size: 16px;
}

.mobile-menu-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-menu-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

.mobile-menu-subtitle {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.mobile-menu-arrow {
  color: #ccc;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Mobile Menu Item Wrapper */
.mobile-menu-item-wrapper {
  position: relative;
}

.mobile-menu-item-wrapper.active .mobile-menu-arrow {
  transform: rotate(180deg);
}

/* Mobile Platforms Submenu */
.mobile-platforms-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f8f9fa;
  margin: 0;
}

.mobile-menu-item-wrapper.active .mobile-platforms-submenu {
  max-height: 1000px;
}

.mobile-platform-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px 15px 60px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: transparent;
}

.mobile-platform-item:last-child {
  border-bottom: none;
}

.mobile-platform-item:hover {
  background: rgba(233, 30, 99, 0.05);
  padding-left: 65px;
}

.mobile-platform-item .platform-icon {
  width: 35px;
  height: 35px;
  font-size: 18px;
  flex-shrink: 0;
}

/* Categories Modal */
.categories-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.categories-modal.active {
  display: block;
  opacity: 1;
}

.categories-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.categories-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  max-height: 70vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: 50px;
}

.categories-modal.active .categories-content {
  transform: translateY(0);
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.categories-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

.categories-close {
  background: rgba(233, 30, 99, 0.1);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e91e63;
  font-size: 16px;
  transition: all 0.3s ease;
}

.categories-close:hover {
  background: #e91e63;
  color: #fff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  background: #f8f9fa;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:active {
  transform: scale(0.95);
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  transition: all 0.3s ease;
}

/* Category Icon Colors - Tema Rengi */
.category-icon.instagram {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-icon.tiktok {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.category-icon.youtube {
  background: linear-gradient(135deg, #e91e63, #d81b60);
}

.category-icon.twitter {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-icon.facebook {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.category-icon.spotify {
  background: linear-gradient(135deg, #e91e63, #d81b60);
}

.category-icon.telegram {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-icon.discord {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.category-icon.twitch {
  background: linear-gradient(135deg, #e91e63, #d81b60);
}

.category-icon.linkedin {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.category-icon.pinterest {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.category-icon.snapchat {
  background: linear-gradient(135deg, #e91e63, #d81b60);
}

/* Customer Reviews Section */
.customer-reviews-section {
  background: #f8f9fa;
  padding: 80px 40px;
  text-align: center;
}

.reviews-header {
  margin-bottom: 60px;
}

.reviews-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviews-icon {
  background: linear-gradient(135deg, #e91e63, #f06292);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.reviews-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
  text-align: center;
  opacity: 0.9;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

/* Left Side - Google Review Card */
.google-review-card {
  background: linear-gradient(135deg, #e91e63, #f06292);
  border-radius: 20px;
  padding: 30px;
  color: white;
  position: sticky;
  top: 20px;
}

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

.google-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-g {
  font-size: 24px;
  font-weight: bold;
  color: #e91e63;
  font-family: 'Google Sans', sans-serif;
}

.google-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.google-stats {
  font-size: 14px;
  opacity: 0.9;
}

.review-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-image img {
  width: 100%;
  height: auto;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: cover;
}

/* Right Side - Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.review-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e91e63;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.reviewer-title {
  font-size: 13px;
  color: #e91e63;
  font-weight: 500;
}

.rating {
  display: flex;
  gap: 3px;
}

.rating i {
  color: #e91e63;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: left;
}

.show-more-reviews {
  text-align: center;
}

.show-more-btn-reviews {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn-reviews:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Customer Reviews Mobile */
@media (max-width: 768px) {
  .customer-reviews-section {
    padding: 50px 20px;
  }

  .reviews-header {
    margin-bottom: 40px;
  }

  .reviews-title-wrapper {
    gap: 10px;
    flex-direction: column;
  }

  .reviews-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .reviews-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .reviews-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .reviews-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .google-review-card {
    position: static;
    padding: 25px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .customer-reviews-section {
    padding: 40px 15px;
  }

  .reviews-header {
    margin-bottom: 30px;
  }

  .reviews-title-wrapper {
    gap: 8px;
  }

  .reviews-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .reviews-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .reviews-subtitle {
    font-size: 12px;
    padding: 0 5px;
    line-height: 1.4;
  }

  .google-review-card {
    padding: 20px;
  }

  .google-header {
    gap: 10px;
    margin-bottom: 20px;
  }

  .google-icon {
    width: 40px;
    height: 40px;
  }

  .google-g {
    font-size: 20px;
  }

  .google-title {
    font-size: 16px;
  }

  .google-stats {
    font-size: 13px;
  }

  .review-item {
    padding: 15px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
  }

  .reviewer-name {
    font-size: 14px;
  }

  .reviewer-title {
    font-size: 12px;
  }

  .review-text {
    font-size: 13px;
  }

  .show-more-btn-reviews {
    padding: 12px 30px;
    font-size: 13px;
  }
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 80px 40px;
  text-align: center;
}

.faq-header {
  margin-bottom: 60px;
}

.faq-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.faq-icon {
  background: linear-gradient(135deg, #e91e63, #f06292);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0;
  background: linear-gradient(135deg, #e91e63, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
  text-align: center;
  opacity: 0.9;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(233, 30, 99, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-item:hover {
  border-color: #e91e63;
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: pointer;
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e91e63;
  color: white;
}

.faq-bullet {
  width: 24px;
  height: 24px;
  background: #e91e63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-question:hover .faq-bullet {
  background: white;
  color: #e91e63;
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-bullet {
  transform: rotate(90deg);
}

/* FAQ Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 20px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-title-wrapper {
    gap: 10px;
    flex-direction: column;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .faq-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-title-wrapper {
    gap: 8px;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .faq-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .faq-subtitle {
    font-size: 12px;
    padding: 0 5px;
    line-height: 1.4;
  }

  .faq-question {
    padding: 12px;
    font-size: 14px;
  }

  .faq-bullet {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .faq-item.active .faq-answer {
    padding: 12px;
  }

  .faq-answer p {
    font-size: 13px;
  }
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 60px 40px 30px;
  transition: background 0.3s ease;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.footer-contact-icon.whatsapp {
  background: #e91e63;
}

.footer-contact-icon.email {
  background: #e91e63;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  color: #bdc3c7;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.footer-logo .logo {
  color: white;
}

.footer-logo .logo-text {
  font-size: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: #e91e63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #c2185b;
  transform: translateY(-3px);
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-nav-section {
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-nav-section h4 {
  margin: 0;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #bdc3c7;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.footer-nav-section.active h4,
.footer-nav-section:hover h4 {
  background: #e91e63;
  color: white;
}

/* Footer Services */
.footer-services {
  margin-bottom: 40px;
}

.footer-service-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  min-height: 200px;
}

.footer-service-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-service-item:hover {
  color: #e91e63;
  transform: translateX(5px);
}

.footer-service-item i {
  font-size: 16px;
  width: 20px;
  color: #e91e63;
}

/* Footer Show All Button */
.footer-show-all {
  text-align: center;
  margin-bottom: 40px;
}

.footer-btn {
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: #bdc3c7;
  font-size: 14px;
}

.footer-payments {
  display: flex;
  gap: 15px;
}

.payment-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #bdc3c7;
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 20px 20px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    text-align: center;
  }

  .footer-logo {
    order: 1;
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-logo .logo {
    margin: 0 auto;
  }

  .footer-contact {
    order: 2;
    align-items: center;
    grid-column: 1;
    grid-row: 2;
  }

  .footer-social {
    order: 3;
    justify-content: center;
    grid-column: 1;
    grid-row: 3;
    margin-top: 10px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-nav-section h4 {
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer-service-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-payments {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 30px 15px 15px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-value {
    font-size: 14px;
  }

  .footer-logo .logo-text {
    font-size: 24px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-nav {
    gap: 8px;
  }

  .footer-nav-section h4 {
    padding: 10px 15px;
    font-size: 13px;
  }

  .footer-service-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-service-item {
    padding: 10px 0;
    font-size: 14px;
  }

  .footer-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .payment-item {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* Desktop hero rating layout - restore original */
@media (min-width: 769px) {
  .hero-rating {
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    margin-top: 0 !important;
    order: initial !important;
  }

  .hero-rating .stars {
    order: initial !important;
  }

  .rating-actions {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    order: initial !important;
  }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0 10px 0;
  z-index: 10003;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  min-height: 60px;
  max-height: 80px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  width: 60px;
  height: 50px;
  flex-shrink: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.bottom-nav-item.cart-item {
  background: #2c2c54;
  color: white;
}

.bottom-nav-item:not(.cart-item) {
  color: #666;
}

.bottom-nav-item:not(.cart-item):hover {
  background: rgba(233, 30, 99, 0.1);
  color: #e91e63;
}

.bottom-nav-item i {
  font-size: 24px;
  line-height: 1;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 8px;
  background: #e91e63;
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
}

/* Mobile breakpoint'lerde göster */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex !important;
  }

  /* Body'ye bottom padding ekle ki içerik menünün arkasında kalmasın */
  body {
    padding-bottom: 50px !important;
  }

  footer {
    margin-bottom: 0 !important;
  }
}

/* Orta boy ekranlar için */
@media (max-width: 600px) {
  .bottom-nav-item {
    width: 55px;
    height: 48px;
    padding: 6px;
  }

  .bottom-nav-item i {
    font-size: 22px;
    width: 22px;
    height: 22px;
  }
}

/* Daha küçük ekranlar için */
@media (max-width: 480px) {
  .mobile-bottom-nav {
    min-height: 58px;
    padding: 8px 0;
  }

  .bottom-nav-item {
    width: 50px;
    height: 46px;
    padding: 6px 4px;
  }

  .bottom-nav-item i {
    font-size: 20px;
    width: 20px;
    height: 20px;
  }

  .cart-badge {
    top: 3px;
    right: 8px;
    font-size: 9px;
    padding: 2px 5px;
    min-width: 16px;
  }

  body {
    padding-bottom: 70px !important;
  }
}

/* Çok küçük ekranlar için */
@media (max-width: 360px) {
  .bottom-nav-item {
    width: 45px;
    height: 44px;
    padding: 5px 3px;
  }

  .bottom-nav-item i {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }
}

/* iOS Safe Area desteği */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-bottom-nav {
    padding-bottom: max(10px, env(safe-area-inset-bottom)) !important;
  }

  @media (max-width: 768px) {
    body {
      padding-bottom: calc(75px + env(safe-area-inset-bottom)) !important;
    }
  }
}

/* Instagram Services Page Styles */
.instagram-services-page {
  background: linear-gradient(to bottom, #1a202c, #2d3748);
  min-height: 100vh;
  padding: 60px 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Sidebar */
.services-sidebar {
  position: sticky;
  top: 100px;
}

.platform-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.platform-logo i {
  font-size: 48px;
  color: white;
}

.platform-logo span {
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

.platform-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.platform-desc {
  color: #cbd5e0;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.platform-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.stat-item i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e63, #f06292);
  border-radius: 12px;
  font-size: 20px;
  color: white;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  color: #a0aec0;
  font-size: 13px;
  margin-bottom: 3px;
}

.stat-value {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* Right Content */
.services-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #cbd5e0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  color: white;
}

.category-tab.active {
  background: linear-gradient(135deg, #e91e63, #f06292);
  border-color: #e91e63;
  color: white;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(233, 30, 99, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  border-radius: 18px;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-info {
  flex: 1;
}

.service-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-type {
  color: #a0aec0;
  font-size: 14px;
  margin-bottom: 8px;
}

.service-packages {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(233, 30, 99, 0.2);
  border-radius: 8px;
  color: #f06292;
  font-size: 13px;
  font-weight: 600;
}

.service-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  background: #e91e63;
  transform: translateX(5px);
}

/* Instagram Services Mobile Responsive */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .services-sidebar {
    position: static;
  }

  .platform-card {
    padding: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .instagram-services-page {
    padding: 40px 0;
  }

  .platform-logo {
    padding: 20px;
  }

  .platform-logo i {
    font-size: 36px;
  }

  .platform-logo span {
    font-size: 18px;
  }

  .platform-title {
    font-size: 22px;
  }

  .platform-desc {
    font-size: 14px;
  }

  .services-content {
    padding: 25px;
  }

  .category-tabs {
    gap: 10px;
  }

  .category-tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Platform-specific styles */
.tiktok-logo {
  background: linear-gradient(135deg, #000000, #fe2c55, #00f2ea) !important;
}

.tiktok-icon {
  background: linear-gradient(135deg, #fe2c55, #00f2ea) !important;
}

.youtube-logo {
  background: linear-gradient(135deg, #FF0000, #c4302b) !important;
}

.youtube-icon {
  background: linear-gradient(135deg, #FF0000, #c4302b) !important;
}

.twitter-logo {
  background: linear-gradient(135deg, #1DA1F2, #0c85d0) !important;
}

.twitter-icon {
  background: linear-gradient(135deg, #1DA1F2, #0c85d0) !important;
}

.facebook-logo {
  background: linear-gradient(135deg, #1877F2, #0c63d4) !important;
}

.facebook-icon {
  background: linear-gradient(135deg, #1877F2, #0c63d4) !important;
}

.spotify-logo {
  background: linear-gradient(135deg, #1DB954, #1aa34a) !important;
}

.spotify-icon {
  background: linear-gradient(135deg, #1DB954, #1aa34a) !important;
}

.telegram-logo {
  background: linear-gradient(135deg, #0088cc, #006da3) !important;
}

.telegram-icon {
  background: linear-gradient(135deg, #0088cc, #006da3) !important;
}

.discord-logo {
  background: linear-gradient(135deg, #5865F2, #4752c4) !important;
}

.discord-icon {
  background: linear-gradient(135deg, #5865F2, #4752c4) !important;
}

.twitch-logo {
  background: linear-gradient(135deg, #9146FF, #772ce8) !important;
}

.twitch-icon {
  background: linear-gradient(135deg, #9146FF, #772ce8) !important;
}

.linkedin-logo {
  background: linear-gradient(135deg, #0A66C2, #004182) !important;
}

.linkedin-icon {
  background: linear-gradient(135deg, #0A66C2, #004182) !important;
}

.pinterest-logo {
  background: linear-gradient(135deg, #E60023, #ad081b) !important;
}

.pinterest-icon {
  background: linear-gradient(135deg, #E60023, #ad081b) !important;
}

.snapchat-logo {
  background: linear-gradient(135deg, #FFFC00, #d4d100) !important;
}

.snapchat-icon {
  background: linear-gradient(135deg, #FFFC00, #d4d100) !important;
}


/* About Page Styles */
.about-hero-section {
  background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-icon {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
}

.about-content-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.about-story-text h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-story-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.about-story-image img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: white;
  opacity: 0.9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder i {
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(-5deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Hide placeholder if image exists */
.about-story-image img ~ .about-image-placeholder,
.about-story-image:has(img) .about-image-placeholder {
  display: none;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.mission-box, .vision-box {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mission-icon, .vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.mission-box h3, .vision-box h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.mission-box p, .vision-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

.values-section {
  margin-bottom: 80px;
}

.values-title {
  text-align: center;
  font-size: 40px;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(233, 30, 99, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.value-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.why-choose-about {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-choose-about h2 {
  text-align: center;
  font-size: 40px;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  text-align: center;
}

.why-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63 0%, #ff6090 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.why-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Responsive About Page */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-story {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .about-story-image img {
    height: 250px;
  }

  .about-image-placeholder {
    height: 250px;
    font-size: 80px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-box, .vision-box {
    padding: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .value-item {
    padding: 30px 20px;
  }

  .why-choose-about {
    padding: 30px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .values-title, .why-choose-about h2 {
    font-size: 28px;
  }
}

/* ===================================
   Service Detail Page Styles
   =================================== */

.service-detail-page {
  padding: 40px 20px 120px;
  background: #f5f5f7;
  min-height: 100vh;
}

.service-detail-container {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr 380px;
  gap: 25px;
}

/* Left Side - Image & Info */
.service-detail-left {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.service-detail-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-image {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.service-icon-large {
  font-size: 140px;
  color: rgba(255, 255, 255, 0.9);
  animation: floatUpDown 3s ease-in-out infinite;
  z-index: 1;
}

.service-icon-large i {
  display: block;
}

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

.service-logo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.service-logo-badge i {
  font-size: 30px;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-image-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 10;
}

.service-image-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-image-text p {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-detail-content {
  padding: 30px;
}

.service-detail-description {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 25px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff8fa;
  border-radius: 12px;
  border: 1px solid #ffe0eb;
}

.service-rating i {
  font-size: 28px;
  color: #e91e63;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-label {
  font-size: 13px;
  color: #999;
}

.rating-value {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

/* Middle - Packages */
.service-detail-middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Right Side - Info Box */
.service-detail-right {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.service-breadcrumb-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #999;
  padding: 0 5px;
}

.service-breadcrumb-top a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.service-breadcrumb-top a:hover {
  color: #e91e63;
}

.service-breadcrumb-top i {
  font-size: 10px;
}

.service-title-section {
  padding: 0 5px;
}

.service-title-with-icon {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.service-page-title {
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.title-platform {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 5px;
}

.title-service {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
}

.service-title-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.service-title-icon i {
  font-size: 36px;
  color: white;
}

.service-subtitle {
  font-size: 15px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

.package-selection-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.package-header {
  margin-bottom: 25px;
}

.package-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.package-header p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.package-item {
  background: white;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 18px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.package-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.package-item.active {
  border-color: #e91e63;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.12);
}

.package-item.active::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #e91e63;
  border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.package-amount {
  font-size: 28px;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 6px;
  line-height: 1;
}

.package-item.active .package-amount {
  color: #e91e63;
}

.package-amount span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #a0aec0;
  margin-top: 6px;
}

.package-item.active .package-amount span {
  color: #e91e63;
}

.package-price {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  margin-top: 10px;
  padding: 6px 14px;
  background: #f7fafc;
  border-radius: 8px;
  display: inline-block;
}

.package-item.active .package-price {
  color: white;
  background: #e91e63;
}

/* Fixed Bottom Bar */
.service-fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7fafc;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  padding: 18px 30px;
}

.fixed-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fixed-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fixed-bottom-left i {
  font-size: 22px;
  color: white;
  width: 56px;
  height: 56px;
  background: #e91e63;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fixed-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fixed-bottom-amount {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
}

.fixed-bottom-service {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}

.fixed-bottom-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.fixed-bottom-price {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
}

.fixed-bottom-right {
  display: flex;
  gap: 12px;
}

.fixed-bottom-btn {
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.buy-now-btn {
  background: linear-gradient(135deg, #e91e63 0%, #d81558 100%);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #d81558 0%, #c2185b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

.add-cart-btn {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  box-shadow: 0 4px 15px rgba(26, 32, 44, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-cart-btn:hover {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 55, 72, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.fixed-bottom-btn i {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-detail-container {
    grid-template-columns: 340px 1fr 360px;
    gap: 20px;
  }

  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-left,
  .service-detail-right {
    position: relative;
    top: 0;
  }

  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-info-box {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-detail-page {
    padding: 20px 15px 120px;
  }

  .package-selection-card {
    padding: 20px;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .package-item {
    padding: 12px 8px;
  }

  .package-amount {
    font-size: 22px;
  }

  .package-price {
    font-size: 13px;
  }

  .service-fixed-bottom {
    display: none;
  }

  .fixed-bottom-container {
    flex-direction: column;
    gap: 15px;
  }

  .fixed-bottom-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .fixed-bottom-price {
    font-size: 22px;
  }

  .fixed-bottom-btn {
    padding: 12px 20px;
    font-size: 13px;
    flex: 1;
  }

  .fixed-bottom-btn i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-image {
    height: 280px;
    padding: 30px;
  }

  .title-service {
    font-size: 24px;
  }

  .package-header h2 {
    font-size: 18px;
  }

  .fixed-bottom-left i {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .fixed-bottom-amount {
    font-size: 15px;
  }

  .fixed-bottom-service {
    font-size: 12px;
  }
}

/* ===================================
   Mobile Package Modal
   =================================== */

.mobile-package-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-package-modal.active {
  display: block;
  opacity: 1;
}

.mobile-package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-package-content {
  position: absolute;
  bottom: 70px;
  left: 12px;
  right: 12px;
  background: white;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(200%);
  transition: transform 0.3s ease;
}

.mobile-package-modal.active .mobile-package-content {
  transform: translateY(0);
}

.mobile-package-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1;
}

.mobile-package-close:active {
  background: rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
}

.mobile-package-close i {
  font-size: 15px;
  color: #4a5568;
}

.mobile-package-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-package-amount {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  letter-spacing: -0.3px;
}

.mobile-package-price {
  font-size: 28px;
  font-weight: 800;
  color: #e91e63;
  letter-spacing: -0.5px;
}

.mobile-package-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-package-btn {
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.mobile-package-btn.buy-now-btn {
  background: linear-gradient(135deg, #e91e63 0%, #d81558 100%);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.mobile-package-btn.buy-now-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.mobile-package-btn.add-cart-btn {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  box-shadow: 0 4px 15px rgba(26, 32, 44, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-package-btn.add-cart-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(45, 55, 72, 0.3);
}

.mobile-package-btn i {
  font-size: 13px;
}

/* Hide modal on desktop */
@media (min-width: 769px) {
  .mobile-package-modal {
    display: none !important;
  }
}

/* Smaller mobile devices */
@media (max-width: 380px) {
  .mobile-package-content {
    bottom: 65px;
    left: 10px;
    right: 10px;
    padding: 20px 16px;
  }

  .mobile-package-amount {
    font-size: 15px;
  }

  .mobile-package-price {
    font-size: 24px;
  }

  .mobile-package-btn {
    padding: 14px 18px;
    font-size: 13px;
  }

  .mobile-package-btn i {
    font-size: 13px;
  }
}

/* ===================================
   Service Info Box (Right Side)
   =================================== */

.service-info-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-box-header {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}

.info-box-header .header-left,
.info-box-header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box-header .header-right {
  font-size: 13px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  gap: 5px;
}

.info-box-header .header-right i {
  font-size: 14px;
}

.info-box-header .cart-count {
  font-weight: 700;
  font-size: 15px;
}

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

.info-box-customers {
  padding: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.info-box-customers h4 {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.5px;
  margin: 0 0 15px 0;
}

.customer-avatars {
  display: flex;
  align-items: center;
  gap: -10px;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  margin-right: -15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.customer-avatar:last-child {
  margin-right: 0;
}

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

.info-box-features {
  padding: 20px 25px 25px;
}

.info-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
}

.info-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-feature-item:first-child {
  padding-top: 0;
}

.info-feature-item i {
  font-size: 18px;
  color: #e91e63;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.info-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.feature-desc {
  font-size: 13px;
  color: #999;
}

/* Responsive for info box */
@media (max-width: 1200px) {
  .service-detail-container {
    grid-template-columns: 340px 1fr 360px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .service-detail-container {
    grid-template-columns: 1fr;
  }

  .service-detail-right {
    position: relative;
    top: 0;
  }

  .service-info-box {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ===================================
   How to Buy Section
   =================================== */

.how-to-buy-section {
  background: var(--bg-primary);
  padding: 80px 30px;
}

.how-to-buy-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Image */
.how-to-buy-left {
  position: sticky;
  top: 100px;
}

.how-to-buy-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.how-to-buy-image img {
  width: 100%;
  height: auto;
  display: block;
}

.how-to-buy-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
}

.how-to-buy-badge i {
  font-size: 32px;
  color: white;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-platform {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.badge-service {
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
}

/* Right Side - Tabs */
.how-to-buy-right {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.how-to-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f7fafc;
  border-bottom: 2px solid #e2e8f0;
}

.how-to-tab {
  padding: 18px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.how-to-tab i {
  font-size: 16px;
}

.how-to-tab:hover {
  background: rgba(233, 30, 99, 0.05);
  color: #e91e63;
}

.how-to-tab.active {
  background: white;
  color: #e91e63;
  border-bottom-color: #e91e63;
}

.how-to-content {
  padding: 40px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.tab-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-item {
  background: #f7fafc;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Reviews Grid Tab */
.reviews-grid-tab {
  display: grid;
  gap: 20px;
}

.review-item-tab {
  background: #f7fafc;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #e91e63;
}

.reviewer-info-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar-tab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.reviewer-avatar-tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details-tab {
  flex: 1;
}

.reviewer-name-tab {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
}

.reviewer-title-tab {
  font-size: 13px;
  color: #64748b;
}

.rating-tab {
  display: flex;
  gap: 4px;
}

.rating-tab i {
  color: #fbbf24;
  font-size: 14px;
}

.review-text-tab {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* Other Services Grid */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-service-item {
  background: #f7fafc;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.other-service-item:hover {
  background: white;
  border-color: #e91e63;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
}

.other-service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-service-icon i {
  font-size: 24px;
  color: white;
}

.other-service-item span {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

/* FAQ Grid Tab */
.faq-grid-tab {
  display: grid;
  gap: 14px;
}

.faq-item-tab {
  background: #f7fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question-tab {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.faq-question-tab:hover {
  background: rgba(233, 30, 99, 0.05);
}

.faq-question-tab i {
  color: #e91e63;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-item-tab.active .faq-question-tab i {
  transform: rotate(90deg);
}

.faq-answer-tab {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-item-tab.active .faq-answer-tab {
  padding: 0 22px 18px 22px;
  max-height: 300px;
}

/* Show More Button */
.show-more-btn {
  margin-top: 24px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
  .how-to-buy-container {
    grid-template-columns: 420px 1fr;
    gap: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .how-to-buy-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-to-buy-left {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .how-to-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-to-buy-section {
    padding: 50px 20px;
  }

  .how-to-buy-badge {
    bottom: 20px;
    left: 20px;
    padding: 12px 18px;
  }

  .how-to-buy-badge i {
    font-size: 24px;
  }

  .badge-platform {
    font-size: 10px;
  }

  .badge-service {
    font-size: 12px;
  }

  .how-to-content {
    padding: 28px 20px;
  }

  .tab-content h3 {
    font-size: 22px;
  }

  .how-to-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-to-tab {
    padding: 14px 12px;
    font-size: 13px;
  }

  .how-to-tab i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .how-to-tabs {
    grid-template-columns: 1fr;
  }

  .how-to-tab {
    padding: 16px;
    justify-content: flex-start;
  }

  .other-services-grid {
    grid-template-columns: 1fr;
  }

  .tab-content h3 {
    font-size: 20px;
  }
}

/* Hidden elements for show more functionality */
.hidden-review,
.hidden-service,
.hidden-faq {
  display: none;
}

/* ===================================
   Simple How to Buy Section
   =================================== */

.how-to-buy-section {
  background: var(--bg-primary);
  padding: 80px 30px;
}

.how-to-buy-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Side - Icon Card */
.how-to-buy-left {
  position: sticky;
  top: 100px;
}

.how-to-buy-card {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 50%, #9C27B0 100%);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(233, 30, 99, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-to-buy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.how-to-icon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
}

.how-to-icon-bg {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.how-to-icon-bg i {
  font-size: 90px;
  color: white;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.how-to-users-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
  animation: bounce-icon 2s infinite ease-in-out;
}

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

.how-to-users-icon i {
  font-size: 32px;
  color: #e91e63;
}

.how-to-category {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.category-platform {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.category-service {
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

/* Right Side - Steps */
.how-to-buy-right {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.how-to-header {
  margin-bottom: 35px;
}

.how-to-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.how-to-header p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-item {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e91e63 0%, #9C27B0 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.step-item:hover::before {
  transform: scaleY(1);
}

.step-item:hover {
  background: white;
  border-color: #e91e63;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.step-icon i {
  font-size: 22px;
  color: white;
}

.step-content {
  flex: 1;
}

.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #e91e63 0%, #9C27B0 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .how-to-buy-container {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }

  .how-to-icon-wrapper {
    width: 160px;
    height: 160px;
  }

  .how-to-icon-bg {
    width: 160px;
    height: 160px;
  }

  .how-to-icon-bg i {
    font-size: 70px;
  }

  .how-to-users-icon {
    width: 60px;
    height: 60px;
  }

  .how-to-users-icon i {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .how-to-buy-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .how-to-buy-left {
    position: relative;
    top: 0;
  }

  .how-to-buy-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-to-buy-section {
    padding: 50px 20px;
  }

  .how-to-buy-card {
    padding: 40px 30px;
  }

  .how-to-buy-right {
    padding: 30px 24px;
  }

  .how-to-header h2 {
    font-size: 24px;
  }

  .how-to-header p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .how-to-icon-wrapper {
    width: 140px;
    height: 140px;
  }

  .how-to-icon-bg {
    width: 140px;
    height: 140px;
  }

  .how-to-icon-bg i {
    font-size: 60px;
  }

  .how-to-users-icon {
    width: 50px;
    height: 50px;
  }

  .how-to-users-icon i {
    font-size: 24px;
  }

  .category-service {
    font-size: 18px;
  }

  .how-to-header h2 {
    font-size: 20px;
  }

  .step-item {
    padding: 20px;
  }
}

/* Legal Content Styles */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  line-height: 1.4;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #4a5568;
  margin-top: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #718096;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #718096;
  margin-bottom: 10px;
}

.legal-section strong {
  color: #2d3748;
  font-weight: 600;
}

.legal-section em {
  font-style: italic;
  color: #a0aec0;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .legal-section h2 {
    font-size: 19px;
  }

  .legal-section h3 {
    font-size: 16px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 14px;
  }
}


/* ==========================================
   KAMPANYALAR SAYFASI STYLES
   ========================================== */

/* Campaigns Hero Section */
.campaigns-hero {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  padding: 80px 20px 60px;
  margin-top: 80px;
}

.campaigns-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.campaigns-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.campaigns-badge i {
  font-size: 16px;
}

.campaigns-hero-content h1 {
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.campaigns-hero-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 10px;
}

.campaigns-count {
  color: white;
  font-size: 24px;
  font-weight: 700;
}

/* Campaigns Grid Section */
.campaigns-grid-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.campaigns-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* Campaign Card */
.campaign-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.campaign-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.campaign-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.campaign-card:hover .campaign-card-image img {
  transform: scale(1.05);
}

.campaign-card-content {
  padding: 20px;
}

.campaign-card-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.campaign-badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.campaign-badge.orange {
  background: #fff3e0;
  color: #f57c00;
}

.campaign-badge.blue {
  background: #e3f2fd;
  color: #1976d2;
}

.campaign-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 50px;
}

.campaign-card-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.campaign-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.meta-value {
  font-size: 14px;
  color: #2d3748;
  font-weight: 600;
}

/* Campaign Detail Modal */
.campaign-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.campaign-modal.active {
  display: flex;
}

.campaign-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.campaign-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
  animation: modalSlideIn 0.3s ease;
}

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

.campaign-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.campaign-modal-close:hover {
  background: white;
  transform: rotate(90deg);
}

.campaign-modal-close i {
  font-size: 18px;
  color: #2d3748;
}

.campaign-modal-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px 0 0 0;
}

.campaign-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-modal-body {
  padding: 30px;
  padding-bottom: 30px;
}

.campaign-modal-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.campaign-modal-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.4;
}

.campaign-modal-body p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 15px;
}

.campaign-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.campaign-conditions-btn {
  flex: 1;
  padding: 14px 24px;
  background: white;
  border: 2px solid #e91e63;
  color: #e91e63;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.campaign-conditions-btn:hover {
  background: #e91e63;
  color: white;
}

.campaign-copy-btn {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  border: none;
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.campaign-copy-btn:hover {
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
  transform: translateY(-2px);
}

/* Campaign Conditions Modal */
.campaign-conditions-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10003;
  align-items: center;
  justify-content: center;
}

.campaign-conditions-modal.active {
  display: flex;
}

.campaign-conditions-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10004;
  animation: modalSlideIn 0.3s ease;
}

.campaign-conditions-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 20px 70px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 10;
  border-radius: 20px 20px 0 0;
}

.campaign-back-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.campaign-back-btn:hover {
  opacity: 0.8;
}

.campaign-copy-btn-top {
  padding: 10px 20px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: calc(100% - 80px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.campaign-copy-btn-top:hover {
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
  transform: translateY(-2px);
}

.campaign-conditions-body {
  padding: 30px;
}

.campaign-conditions-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  margin-top: 25px;
}

.campaign-conditions-body h3:first-child {
  margin-top: 0;
}

.campaign-conditions-body p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .campaigns-hero {
    padding: 60px 20px 40px;
    margin-top: 60px;
  }

  .campaigns-hero-content h1 {
    font-size: 28px;
  }

  .campaigns-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .campaign-modal-content,
  .campaign-conditions-content {
    width: 95%;
    max-height: 70vh;
  }

  .campaign-modal-body,
  .campaign-conditions-body {
    padding: 20px;
  }

  .campaign-modal-footer {
    flex-direction: column;
  }

  .campaign-conditions-header {
    position: relative;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .campaign-copy-btn-top {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .campaigns-hero-content h1 {
    font-size: 24px;
  }

  .campaigns-count {
    font-size: 20px;
  }

  .campaign-card-content h3 {
    font-size: 16px;
    min-height: auto;
  }

  .campaign-modal-image {
    height: 200px;
  }

  .campaign-modal-body h2 {
    font-size: 20px;
  }
}

/* Campaign Detail Button */
.campaign-detail-btn {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.campaign-detail-btn:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
  transform: translateY(-2px);
}

.campaign-detail-btn:disabled {
  background: #9e9e9e;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Disabled Campaign Card */
.campaign-card.disabled {
  opacity: 0.7;
  pointer-events: none;
}

.campaign-card.disabled .campaign-card-image {
  position: relative;
}

.campaign-card.disabled .campaign-card-image img {
  filter: grayscale(50%);
}

/* Campaign Expired Overlay */
.campaign-expired-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.expired-text {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .campaign-detail-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .expired-text {
    font-size: 14px;
    padding: 8px 24px;
  }
}

/* ===================================
   BLOG PAGE STYLES
   =================================== */

/* Blog Slider Section */
.blog-slider-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.blog-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.blog-slider-header h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider-controls {
  display: flex;
  gap: 15px;
}

.blog-slider-section .slider-btn {
  position: relative;
  width: 48px;
  height: 48px;
  background: rgba(233, 30, 99, 0.1);
  border: 2px solid rgba(233, 30, 99, 0.3);
  border-radius: 12px;
  color: #e91e63;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.blog-slider-section .slider-btn:hover {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.blog-slider-section .slider-btn:active {
  transform: translateY(0);
}

/* Blog Slider Wrapper */
.blog-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.blog-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Featured Blog Card */
.featured-blog-card {
  min-width: calc(33.333% - 20px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.featured-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 30, 99, 0.5);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.featured-blog-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-blog-card:hover .featured-blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
  z-index: 2;
}

.featured-blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.blog-date i,
.blog-read-time i {
  color: #e91e63;
}

.featured-blog-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.featured-blog-card:hover .featured-blog-content h3 {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-blog-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-views {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.blog-views i {
  color: #e91e63;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e91e63;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
  color: #f06292;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* All Blog Posts Section */
.blog-posts-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.blog-posts-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.blog-posts-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.blog-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  color: #e91e63;
}

.filter-btn.active {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* Blog Posts Grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.blog-post-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 1;
}

.blog-post-card.hidden {
  display: none;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 30, 99, 0.5);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.blog-post-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
  color: white;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
}

.post-category.instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C);
}

.post-category.tiktok {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.post-category.youtube {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.post-category.twitter {
  background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.blog-post-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.post-date,
.post-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.post-date i,
.post-read-time i {
  color: #e91e63;
}

.blog-post-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-post-card:hover .blog-post-content h3 {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-post-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 14px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-views {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.post-views i {
  color: #e91e63;
}

.post-read-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e91e63;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-read-link:hover {
  gap: 10px;
  color: #f06292;
}

.post-read-link i {
  transition: transform 0.3s ease;
}

.post-read-link:hover i {
  transform: translateX(4px);
}

/* Load More Button */
.blog-load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.load-more-btn {
  padding: 16px 48px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 30, 99, 0.5);
}

.load-more-btn:active {
  transform: translateY(-1px);
}

.load-more-btn i {
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .featured-blog-card {
    min-width: calc(50% - 15px);
  }

  .blog-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-slider-section,
  .blog-posts-section {
    padding: 60px 0;
  }

  .blog-slider-container,
  .blog-posts-container {
    padding: 0 20px;
  }

  .blog-slider-header h2,
  .blog-posts-header h2 {
    font-size: 32px;
  }

  .blog-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .featured-blog-card {
    min-width: 100%;
  }

  .featured-blog-image {
    height: 220px;
  }

  .featured-blog-content {
    padding: 20px;
  }

  .featured-blog-content h3 {
    font-size: 20px;
  }

  .blog-posts-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-filter {
    width: 100%;
    justify-content: center;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .load-more-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-slider-header h2,
  .blog-posts-header h2 {
    font-size: 26px;
  }

  .blog-slider-section .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .blog-category {
    font-size: 11px;
    padding: 6px 16px;
  }

  .featured-blog-content h3 {
    font-size: 18px;
  }

  .blog-post-content h3 {
    font-size: 18px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ===========================================
   BLOG DETAIL PAGE STYLES
   =========================================== */

/* Blog Detail Hero */
.blog-detail-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px 20px 60px;
  color: white;
}

.blog-detail-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.blog-breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.blog-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.blog-breadcrumb i {
  font-size: 12px;
  opacity: 0.6;
}

.blog-detail-category {
  margin-bottom: 20px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.category-badge i {
  font-size: 16px;
}

.blog-detail-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}

.blog-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-detail-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.8;
}

.meta-separator {
  opacity: 0.5;
}

.blog-detail-actions {
  display: flex;
  gap: 12px;
}

.blog-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.blog-action-btn:hover {
  background: rgba(233, 30, 99, 0.2);
  border-color: rgba(233, 30, 99, 0.4);
  transform: translateY(-2px);
}

/* ========================================
   Contact Widget
   ======================================== */
.contact-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.contact-widget-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
}

.contact-widget-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

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

.contact-widget.active .contact-widget-toggle i {
  transform: rotate(180deg);
}

.contact-widget-menu {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-widget.active .contact-widget-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-widget-header {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  padding: 20px;
  color: white;
}

.contact-widget-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact-widget-header p {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
}

.contact-widget-items {
  padding: 10px;
}

.contact-widget-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.contact-widget-item:last-child {
  margin-bottom: 0;
}

.contact-widget-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}

.contact-widget-item.whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-widget-item.whatsapp:hover {
  background: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.4);
}

.contact-widget-item.email {
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.contact-widget-item.email:hover {
  background: rgba(233, 30, 99, 0.05);
  border-color: rgba(233, 30, 99, 0.4);
}

.contact-widget-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-widget-item.whatsapp .contact-widget-icon {
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
}

.contact-widget-item.email .contact-widget-icon {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
}

.contact-widget-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #333;
}

.contact-widget-info p {
  font-size: 13px;
  margin: 0;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-widget {
    left: 15px;
    bottom: 15px;
  }

  .contact-widget-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-widget-menu {
    width: 260px;
    bottom: 60px;
  }
}

/* ============================================
   USER PROFILE DROPDOWN STYLES
   ============================================ */

.user-profile-wrapper {
  position: relative;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f6fa;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.user-profile-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.user-profile-btn .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.user-profile-btn .user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.user-profile-btn .user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.user-profile-btn .user-balance {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
}

.user-profile-btn i.fa-chevron-down {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.user-profile-wrapper.active .user-profile-btn i.fa-chevron-down {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.user-profile-wrapper.active .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.user-dropdown-item:hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
  color: #E91E63;
}

.user-dropdown-item i {
  font-size: 16px;
  color: #E91E63;
  transition: color 0.2s ease;
}

.user-dropdown-item:hover i {
  color: #E91E63;
}

.user-dropdown-item.logout {
  color: #e74c3c;
}

.user-dropdown-item.logout:hover {
  background: rgba(231, 76, 60, 0.1);
}

.user-dropdown-item.logout i {
  color: #e74c3c;
}

.user-dropdown-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 8px 0;
}

@media (max-width: 768px) {
  .user-profile-btn {
    padding: 4px 12px 4px 4px;
    gap: 8px;
  }

  .user-profile-btn .user-avatar {
    width: 36px;
    height: 36px;
  }

  .user-profile-btn .user-name {
    font-size: 13px;
  }

  .user-profile-btn .user-balance {
    font-size: 11px;
  }

  .user-dropdown {
    min-width: 200px;
  }

  /* Hide desktop user profile on mobile */
  .user-profile-wrapper {
    display: none !important;
  }
}

/* ============================================
   MOBILE USER AVATAR & MENU
   ============================================ */

.mobile-user-avatar {
  padding: 0 !important;
  overflow: hidden;
}

.mobile-user-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E91E63;
}

/* Mobile User Menu Overlay */
.mobile-user-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-user-menu-overlay.active {
  opacity: 1;
}

/* Mobile User Menu (Bottom Sheet) */
.mobile-user-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 10002;
  max-height: 85vh;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 90px; /* Space for bottom nav */
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-user-menu.active {
  transform: translateY(0);
}

/* User Profile Header */
.mobile-user-profile-header {
  background: linear-gradient(135deg, #3d4654 0%, #2c3340 100%);
  padding: 12px 14px;
  border-radius: 14px 14px 0 0;
  position: relative;
}

.mobile-user-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-user-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-user-avatar-large {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.mobile-user-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mobile-user-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: lowercase;
  line-height: 1.2;
}

.mobile-user-balance {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.mobile-user-badge {
  flex-shrink: 0;
}

.mobile-user-badge span {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #34495e;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.3px;
}

/* Menu Grid */
.mobile-user-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px 12px 14px 12px;
  background: #fff;
}

.mobile-menu-grid-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 10px;
  background: #f7f8fa;
  border-radius: 8px;
  text-decoration: none;
  color: #3d3d3d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  min-height: 52px;
}

.mobile-menu-grid-item:active {
  transform: scale(0.96);
  background: #e8e9ed;
}

.mobile-menu-grid-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.mobile-menu-grid-icon i {
  font-size: 15px;
  color: #E91E63;
}

.mobile-menu-grid-item.exit {
  background: linear-gradient(135deg, #ff6b9d 0%, #E91E63 100%);
  color: #fff;
}

.mobile-menu-grid-item.exit .mobile-menu-grid-icon {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-grid-item.exit .mobile-menu-grid-icon i {
  color: #fff;
}

.mobile-menu-grid-item.exit:active {
  background: linear-gradient(135deg, #E91E63 0%, #ad1457 100%);
}

/* Show mobile avatar only on mobile */
@media (min-width: 769px) {
  .mobile-user-avatar,
  .mobile-user-menu,
  .mobile-user-menu-overlay {
    display: none !important;
  }
}


/* ==========================================
   DISCOUNT WHEEL STYLES
   ========================================== */

/* Discount Wheel Modal */
.discount-wheel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.discount-wheel-modal.active {
  display: flex;
}

.discount-wheel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.discount-wheel-container {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 25px;
  padding: 35px 30px;
  max-width: 500px;
  width: 90%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100000;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.discount-wheel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: #2d3436;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.discount-wheel-close:hover {
  background: rgba(233, 30, 99, 0.2);
  color: #e91e63;
  transform: rotate(90deg);
}

.discount-wheel-header {
  text-align: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  display: block !important;
  visibility: visible !important;
}

.discount-wheel-header i {
  font-size: 45px;
  color: #e91e63;
  margin-bottom: 10px;
  display: block !important;
  visibility: visible !important;
}

.discount-wheel-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d3436;
  margin: 8px 0;
  line-height: 1.2;
  display: block !important;
  visibility: visible !important;
}

.discount-wheel-header p {
  font-size: 15px;
  color: #636e72;
  margin: 0;
  line-height: 1.4;
  display: block !important;
  visibility: visible !important;
}

/* Wheel Container */
.wheel-container {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.wheel-arrow {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 35px solid #e91e63;
  z-index: 10;
  filter: drop-shadow(0 2px 8px rgba(233, 30, 99, 0.5));
}

.wheel-canvas-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#wheelCanvas {
  display: block;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  transform-origin: center center;
  will-change: transform;
}

.wheel-spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid white;
  background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
  color: white;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
  transition: all 0.3s ease;
  z-index: 20;
}

.wheel-spin-btn:hover:not(:disabled) {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.6);
}

.wheel-spin-btn:active:not(:disabled) {
  transform: translate(-50%, -50%) scale(0.95);
}

.wheel-spin-btn.spinning {
  pointer-events: none;
  animation: buttonPulse 0.5s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

.wheel-spin-btn i {
  font-size: 22px;
}

.wheel-info-text {
  text-align: center;
  padding: 12px 18px;
  background: #f8f9fa;
  border-radius: 12px;
  color: #636e72;
  font-size: 13px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  visibility: visible !important;
}

.wheel-info-text i {
  font-size: 14px;
  color: #e91e63;
  display: inline-block !important;
  visibility: visible !important;
}

.wheel-info-text span {
  display: inline-block !important;
  visibility: visible !important;
}

/* Wheel Result Modal */
.wheel-result-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
}

.wheel-result-modal.active {
  display: flex;
}

.wheel-result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.wheel-result-container {
  position: relative;
  z-index: 1000000;
}

.wheel-result-content {
  background: linear-gradient(135deg, #ffffff 0%, #fef7f7 100%);
  border-radius: 25px;
  padding: 50px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalBounce 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes modalBounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.result-icon {
  margin-bottom: 20px;
  animation: iconPop 0.6s ease;
}

@keyframes iconPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.wheel-result-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d3436;
  margin: 15px 0;
}

.wheel-result-content p {
  font-size: 16px;
  color: #636e72;
  line-height: 1.6;
  margin: 15px 0 25px;
}

.result-close-btn {
  background: linear-gradient(135deg, #e91e63, #d81b60);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.result-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .discount-wheel-container {
    padding: 25px 20px;
    width: 90%;
    max-width: 450px;
  }

  .discount-wheel-header {
    margin-bottom: 15px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header i {
    font-size: 38px;
    margin-bottom: 8px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header h2 {
    font-size: 24px;
    margin: 6px 0;
    line-height: 1.2;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header p {
    font-size: 14px;
    line-height: 1.4;
    display: block !important;
    visibility: visible !important;
  }

  .wheel-container {
    max-width: 300px;
    margin-bottom: 15px;
  }

  .wheel-arrow {
    top: -15px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 32px solid #e91e63;
  }

  .wheel-spin-btn {
    width: 75px;
    height: 75px;
    font-size: 12px;
    border-width: 4px;
  }

  .wheel-spin-btn i {
    font-size: 16px;
  }

  .wheel-info-text {
    padding: 6px 10px;
    font-size: 10px;
    display: flex !important;
    visibility: visible !important;
  }

  .wheel-info-text i {
    font-size: 13px;
    display: inline-block !important;
    visibility: visible !important;
  }

  .wheel-info-text span {
    display: inline-block !important;
    visibility: visible !important;
  }

  .wheel-result-content {
    padding: 35px 22px;
  }

  .wheel-result-content h2 {
    font-size: 22px;
  }

  .wheel-result-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .discount-wheel-container {
    padding: 20px 15px;
    width: 92%;
    max-width: 400px;
  }

  .discount-wheel-header {
    margin-bottom: 12px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header i {
    font-size: 35px;
    margin-bottom: 6px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header h2 {
    font-size: 20px;
    margin: 4px 0;
    line-height: 1.2;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header p {
    font-size: 13px;
    line-height: 1.4;
    display: block !important;
    visibility: visible !important;
  }

  .wheel-container {
    max-width: 260px;
    margin-bottom: 12px;
  }

  .wheel-arrow {
    top: -13px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 30px solid #e91e63;
  }

  .wheel-spin-btn {
    width: 68px;
    height: 68px;
    font-size: 11px;
    border-width: 4px;
  }

  .wheel-spin-btn i {
    font-size: 15px;
  }

  .wheel-info-text {
    padding: 5px 8px;
    font-size: 9px;
    display: flex !important;
    visibility: visible !important;
  }

  .wheel-info-text i {
    font-size: 13px;
    display: inline-block !important;
    visibility: visible !important;
  }

  .wheel-info-text span {
    display: inline-block !important;
    visibility: visible !important;
  }

  .wheel-result-content {
    padding: 30px 20px;
  }

  .wheel-result-content h2 {
    font-size: 20px;
  }

  .wheel-result-content p {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .discount-wheel-container {
    padding: 18px 12px;
    width: 94%;
  }

  .discount-wheel-header {
    margin-bottom: 10px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header i {
    font-size: 32px;
    margin-bottom: 5px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header h2 {
    font-size: 18px;
    margin: 3px 0;
    line-height: 1.2;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header p {
    font-size: 12px;
    line-height: 1.3;
    display: block !important;
    visibility: visible !important;
  }

  .wheel-container {
    max-width: 240px;
    margin-bottom: 10px;
  }

  .wheel-arrow {
    top: -12px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 28px solid #e91e63;
  }

  .wheel-spin-btn {
    width: 62px;
    height: 62px;
    font-size: 10px;
    border-width: 4px;
  }

  .wheel-spin-btn i {
    font-size: 14px;
  }

  .wheel-info-text {
    padding: 4px 7px;
    font-size: 9px;
    display: flex !important;
    visibility: visible !important;
  }

  .wheel-info-text i {
    font-size: 10px;
    display: inline-block !important;
    visibility: visible !important;
  }

  .wheel-info-text span {
    display: inline-block !important;
    visibility: visible !important;
  }
}

@media (max-height: 700px) and (max-width: 768px) {
  .discount-wheel-container {
    padding: 15px 12px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .discount-wheel-header {
    margin-bottom: 8px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header i {
    font-size: 30px;
    margin-bottom: 4px;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header h2 {
    font-size: 17px;
    margin: 3px 0;
    line-height: 1.2;
    display: block !important;
    visibility: visible !important;
  }

  .discount-wheel-header p {
    font-size: 11px;
    line-height: 1.3;
    display: block !important;
    visibility: visible !important;
  }

  .wheel-container {
    max-width: 220px;
    margin-bottom: 8px;
  }

  .wheel-arrow {
    top: -11px;
  }

  .wheel-spin-btn {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .wheel-spin-btn i {
    font-size: 13px;
  }

  .wheel-info-text {
    padding: 4px 7px;
    font-size: 9px;
    display: flex !important;
    visibility: visible !important;
  }

  .wheel-info-text i {
    font-size: 10px;
    display: inline-block !important;
    visibility: visible !important;
  }

  .wheel-info-text span {
    display: inline-block !important;
    visibility: visible !important;
  }
}

/* Mobile: Hide slider1 image */
@media (max-width: 768px) {
  .hero-right,
  .hero-image {
    display: none !important;
  }
}

/* Mobile: Campaign page bottom spacing */
@media (max-width: 768px) {
  .campaigns-grid-section {
    padding-bottom: 100px !important;
  }

  .campaign-modal-content {
    max-height: 70vh;
    padding-bottom: 0;
  }

  .campaign-modal-body {
    padding-bottom: 20px;
  }

  .campaign-modal-actions {
    padding-bottom: 0;
  }
}

/* ========================================
   DARK MODE STYLES
   ======================================== */

/* Dark Mode Root Variables */
body.dark-mode {
  --primary-bg: #0f172a;
  --secondary-bg: #1e293b;
  --tertiary-bg: #334155;
  --card-bg: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --hover-bg: #334155;
  --shadow: rgba(0, 0, 0, 0.3);
}

/* Body and Main Background */
body.dark-mode {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--text-primary);
}

/* Topbar */
body.dark-mode .topbar {
  background: var(--secondary-bg);
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .topbar-content a,
body.dark-mode .topbar-content span {
  color: var(--text-secondary);
}

/* Navbar */
body.dark-mode .navbar {
  background: var(--secondary-bg);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 6px var(--shadow);
}

body.dark-mode .logo-text {
  color: var(--text-primary);
}

body.dark-mode .nav-link {
  color: var(--text-secondary);
}

body.dark-mode .nav-link:hover {
  color: #e91e63;
}

/* Dropdowns */
body.dark-mode .social-platforms-dropdown,
body.dark-mode .corporate-dropdown {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .platform-item,
body.dark-mode .corporate-item {
  color: var(--text-secondary);
}

body.dark-mode .platform-item:hover,
body.dark-mode .corporate-item:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

/* Buttons */
body.dark-mode .btn-login {
  background: var(--tertiary-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

body.dark-mode .btn-login:hover {
  background: var(--hover-bg);
  border-color: #e91e63;
}

body.dark-mode .icon-btn {
  background: var(--tertiary-bg);
  color: var(--text-secondary);
}

body.dark-mode .icon-btn:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

/* Hero Section */
body.dark-mode .hero {
  background: var(--primary-bg);
}

body.dark-mode .hero-title,
body.dark-mode .hero-subtitle {
  color: var(--text-primary);
}

body.dark-mode .hero-desc {
  color: var(--text-secondary);
}

body.dark-mode .hero-bottom-bar {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
}

body.dark-mode .bar-content {
  color: var(--text-secondary);
}

/* Section Backgrounds */
body.dark-mode .packages-section,
body.dark-mode .platforms-section,
body.dark-mode .why-choose-section,
body.dark-mode .reviews-section,
body.dark-mode .about-section {
  background: var(--primary-bg);
}

body.dark-mode .section-title,
body.dark-mode .packages-header h2 {
  color: var(--text-primary);
}

body.dark-mode .section-subtitle,
body.dark-mode .packages-subtitle {
  color: var(--text-secondary);
}

/* Cards */
body.dark-mode .package-card,
body.dark-mode .product-card,
body.dark-mode .platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px var(--shadow);
}

body.dark-mode .package-card:hover,
body.dark-mode .product-card:hover,
body.dark-mode .platform-card:hover {
  background: var(--tertiary-bg);
  border-color: #e91e63;
  transform: translateY(-5px);
}

body.dark-mode .package-card-minimal {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .package-card-minimal:hover {
  background: var(--tertiary-bg);
}

/* Card Text */
body.dark-mode .product-title,
body.dark-mode .product-main-title,
body.dark-mode .package-title {
  color: var(--text-primary);
}

body.dark-mode .product-description,
body.dark-mode .product-subtitle,
body.dark-mode .package-description {
  color: var(--text-secondary);
}

body.dark-mode .product-price,
body.dark-mode .price-amount {
  color: var(--text-primary);
}

/* Features List */
body.dark-mode .product-features li,
body.dark-mode .package-features li {
  color: var(--text-secondary);
}

body.dark-mode .product-features li i,
body.dark-mode .package-features li i {
  color: #10b981;
}

/* Service Platforms */
body.dark-mode .service-platforms {
  background: var(--secondary-bg);
}

body.dark-mode .service-platform {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .service-platform-name {
  color: var(--text-primary);
}

body.dark-mode .service-platform-desc {
  color: var(--text-secondary);
}

/* Slider Navigation */
body.dark-mode .prev-btn,
body.dark-mode .next-btn,
body.dark-mode .slider-nav-btn {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

body.dark-mode .prev-btn:hover,
body.dark-mode .next-btn:hover,
body.dark-mode .slider-nav-btn:hover {
  background: var(--hover-bg);
  border-color: #e91e63;
}

/* Show More Buttons */
body.dark-mode .show-more-btn,
body.dark-mode .category-filter-btn {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

body.dark-mode .show-more-btn:hover,
body.dark-mode .category-filter-btn:hover,
body.dark-mode .category-filter-btn.active {
  background: var(--hover-bg);
  color: var(--text-primary);
  border-color: #e91e63;
}

/* Modals */
body.dark-mode .modal-overlay,
body.dark-mode .video-modal {
  background: rgba(0, 0, 0, 0.85);
}

body.dark-mode .modal-content,
body.dark-mode .modal-box {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

body.dark-mode .modal-header,
body.dark-mode .modal-title {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .modal-body,
body.dark-mode .modal-text {
  color: var(--text-secondary);
}

body.dark-mode .close-modal,
body.dark-mode .modal-close-btn {
  background: var(--tertiary-bg);
  color: var(--text-secondary);
}

body.dark-mode .close-modal:hover,
body.dark-mode .modal-close-btn:hover {
  background: #ef4444;
  color: white;
}

/* Forms */
body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="password"],
body.dark-mode input[type="tel"],
body.dark-mode textarea,
body.dark-mode select {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: var(--text-muted);
}

body.dark-mode input:focus,
body.dark-mode textarea:focus,
body.dark-mode select:focus {
  border-color: #e91e63;
  background: var(--hover-bg);
}

body.dark-mode .form-label {
  color: var(--text-secondary);
}

/* Cart Modal */
body.dark-mode .add-cart-modal,
body.dark-mode .buy-now-modal {
  background: rgba(0, 0, 0, 0.85);
}

body.dark-mode .cart-modal-content {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .cart-product-header {
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .cart-product-title,
body.dark-mode .cart-product-platform {
  color: var(--text-primary);
}

body.dark-mode .back-btn {
  background: var(--tertiary-bg);
  color: var(--text-secondary);
}

body.dark-mode .back-btn:hover {
  background: var(--hover-bg);
}

body.dark-mode .cart-input-wrapper input {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

body.dark-mode .cart-input-note {
  color: var(--text-muted);
}

/* Reviews */
body.dark-mode .review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .review-text {
  color: var(--text-secondary);
}

body.dark-mode .review-author {
  color: var(--text-primary);
}

body.dark-mode .review-date {
  color: var(--text-muted);
}

/* Footer */
body.dark-mode .footer-section {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
}

body.dark-mode .footer-title {
  color: var(--text-primary);
}

body.dark-mode .footer-links a,
body.dark-mode .footer-text {
  color: var(--text-secondary);
}

body.dark-mode .footer-links a:hover {
  color: #e91e63;
}

body.dark-mode .footer-bottom {
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Mobile Menu */
body.dark-mode .mobile-menu-modal {
  background: rgba(0, 0, 0, 0.85);
}

body.dark-mode .mobile-menu-content {
  background: var(--secondary-bg);
  border-left: 1px solid var(--border-color);
}

body.dark-mode .mobile-menu-item {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .mobile-menu-item:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

body.dark-mode .mobile-menu-header {
  border-bottom: 1px solid var(--border-color);
}

/* Mobile Bottom Navigation */
body.dark-mode .mobile-bottom-nav {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
}

body.dark-mode .bottom-nav-item {
  color: var(--text-secondary);
}

body.dark-mode .bottom-nav-item:hover,
body.dark-mode .bottom-nav-item.active {
  color: #e91e63;
}

/* Mobile Submenus */
body.dark-mode .mobile-platforms-submenu,
body.dark-mode .mobile-corporate-submenu {
  background: var(--tertiary-bg);
}

body.dark-mode .mobile-platform-item,
body.dark-mode .mobile-corporate-item {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .mobile-platform-item:hover,
body.dark-mode .mobile-corporate-item:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

/* Categories Modal */
body.dark-mode .categories-modal {
  background: rgba(0, 0, 0, 0.85);
}

body.dark-mode .categories-content {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .categories-header {
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .categories-header h3 {
  color: var(--text-primary);
}

body.dark-mode .category-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .category-card:hover {
  background: var(--hover-bg);
  border-color: #e91e63;
}

/* Blog Section */
body.dark-mode .blog-section {
  background: var(--primary-bg);
}

body.dark-mode .blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .blog-card:hover {
  background: var(--tertiary-bg);
}

body.dark-mode .blog-title {
  color: var(--text-primary);
}

body.dark-mode .blog-excerpt {
  color: var(--text-secondary);
}

body.dark-mode .blog-meta {
  color: var(--text-muted);
}

/* Campaign Cards */
body.dark-mode .campaign-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .campaign-card:hover {
  background: var(--tertiary-bg);
  border-color: #e91e63;
}

body.dark-mode .campaign-title {
  color: var(--text-primary);
}

body.dark-mode .campaign-description {
  color: var(--text-secondary);
}

/* About Page */
body.dark-mode .about-content-section {
  background: var(--primary-bg);
}

body.dark-mode .about-story,
body.dark-mode .mission-box,
body.dark-mode .vision-box,
body.dark-mode .value-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .about-story h2,
body.dark-mode .mission-box h3,
body.dark-mode .vision-box h3,
body.dark-mode .value-item h4 {
  color: var(--text-primary);
}

body.dark-mode .about-story p,
body.dark-mode .mission-box p,
body.dark-mode .vision-box p,
body.dark-mode .value-item p {
  color: var(--text-secondary);
}

/* Contact Widget */
body.dark-mode .contact-widget-menu {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .contact-widget-item {
  color: var(--text-secondary);
}

body.dark-mode .contact-widget-item:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

/* User Profile Dropdown */
body.dark-mode .user-dropdown {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .user-dropdown-item {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .user-dropdown-item:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

/* Notifications Dropdown */
body.dark-mode .notifications-dropdown {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .notification-item {
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode .notification-item:hover {
  background: var(--hover-bg);
}

body.dark-mode .notification-item h5 {
  color: var(--text-primary);
}

body.dark-mode .notification-item p {
  color: var(--text-secondary);
}

/* Price Tags */
body.dark-mode .price-original {
  color: var(--text-muted);
}

body.dark-mode .price-discount {
  color: #10b981;
}

/* Badges */
body.dark-mode .discount-badge,
body.dark-mode .package-badge {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: white;
}

body.dark-mode .package-popular-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

/* Loading State */
body.dark-mode .page-loader {
  background: var(--primary-bg);
}

/* Scrollbar */
body.dark-mode::-webkit-scrollbar {
  width: 12px;
  background: var(--secondary-bg);
}

body.dark-mode::-webkit-scrollbar-thumb {
  background: var(--tertiary-bg);
  border-radius: 6px;
}

body.dark-mode::-webkit-scrollbar-thumb:hover {
  background: var(--hover-bg);
}

/* Search Bar */
body.dark-mode .search-bar {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .search-bar input {
  color: var(--text-primary);
}

body.dark-mode .search-bar input::placeholder {
  color: var(--text-muted);
}

/* Tables */
body.dark-mode table {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode th {
  background: var(--tertiary-bg);
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
}

body.dark-mode td {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

body.dark-mode tr:hover {
  background: var(--hover-bg);
}

/* Service Detail Page */
body.dark-mode .service-detail-container {
  background: var(--primary-bg);
}

body.dark-mode .service-header {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .category-tab {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

body.dark-mode .category-tab:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}

body.dark-mode .category-tab.active {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: white;
}

body.dark-mode .service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

body.dark-mode .service-card:hover {
  background: var(--tertiary-bg);
  border-color: #e91e63;
}

body.dark-mode .service-info h4 {
  color: var(--text-primary);
}

body.dark-mode .service-info p {
  color: var(--text-secondary);
}
