:root {
  --primary: #ca143d;
  --primary-hover: #b01034;
  --primary-light: rgba(202, 20, 61, 0.08);
  --secondary: #2c3e50;
  --accent: #25d366;
  --dark: #1d1e20;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.9);
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 35px -10px rgba(202, 20, 61, 0.12), 0 10px 15px -5px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #334155;
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Glassmorphism Header */
.modern-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.modern-nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.modern-logo img:hover {
  transform: scale(1.03);
}

.modern-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.modern-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  position: relative;
  padding: 8px 0;
}

.modern-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.modern-nav-link:hover {
  color: var(--primary);
}

.modern-nav-link:hover::after {
  width: 100%;
}

.modern-header-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #e11d48 100%);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(202, 20, 61, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modern-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 20, 61, 0.45);
}

/* Mobile Toggle */
.modern-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
  padding: 8px;
}

/* Modern Hero Section */
.modern-hero {
  position: relative;
  min-height: 520px;
  background: url('/wp-content/uploads/2022/04/sliderbg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 80px 24px 0 24px;
}

.modern-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 55%, rgba(255,255,255,0.25) 100%);
  z-index: 1;
}

.modern-hero-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  gap: 30px;
}

.modern-hero-text {
  padding-bottom: 40px;
}

.modern-hero-text h1 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(202, 20, 61, 0.08);
}

.modern-hero-text p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
  max-width: 520px;
  line-height: 1.6;
}

/* Hero Live Badge */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #166534;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot-anim 1.8s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Hero Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-tag {
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-tag i {
  color: var(--primary);
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.modern-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #e11d48 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(202, 20, 61, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.modern-hero-btn.secondary {
  background: #ffffff;
  color: var(--secondary);
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.modern-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(202, 20, 61, 0.45);
}

.modern-hero-btn.secondary:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.modern-hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  line-height: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.modern-hero-img-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 580px;
  display: block;
  margin-bottom: 0;
  vertical-align: bottom;
  transform: scale(1.15);
  transform-origin: bottom right;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.15));
}

/* Hero Floating Glass Badges */
.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  animation: float-badge 4s ease-in-out infinite;
}

.hero-badge-1 {
  top: 20px;
  left: -40px;
  animation-delay: 0s;
}

.hero-badge-2 {
  bottom: 50px;
  left: -60px;
  animation-delay: 1.5s;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Section Title */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section-header p {
  font-size: 16px;
  color: #64748b;
}

/* Services Grid (Cards) */
.services-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #fb7185);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(241, 245, 249, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--primary-light);
  transform: scale(1.1);
}

.service-icon-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* Feature Showcase (Hem Bedenini Hem Ruhunu Besle) */
.showcase-section {
  padding: 100px 24px;
  background: var(--white);
}

.showcase-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-img-box {
  position: relative;
  text-align: center;
}

.showcase-img-box img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.showcase-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 28px;
}

.showcase-list {
  list-style: none;
  margin-bottom: 36px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
}

.showcase-list li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.pricing-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.pricing-featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.pricing-logo {
  height: 40px;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-currency {
  font-size: 24px;
  vertical-align: super;
}

.pricing-period {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  color: #475569;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  background: var(--primary-light);
  color: var(--primary);
  transition: var(--transition);
}

.pricing-card.featured .pricing-btn,
.pricing-btn:hover {
  background: linear-gradient(135deg, var(--primary) 0%, #e11d48 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(202, 20, 61, 0.35);
}

/* Footer Fruits Banner */
.footer-banner {
  height: 300px;
  background: url('/wp-content/uploads/2022/05/footermeyve.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.footer-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.footer-banner-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff !important;
}

/* Modern Footer */
.modern-footer {
  background: var(--secondary);
  color: #94a3b8;
  padding: 70px 24px 30px 24px;
  font-size: 14px;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

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

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .services-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .modern-nav-menu {
    display: none !important;
  }
  .modern-mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .services-grid, .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: auto;
    padding: 60px 16px 0 16px;
  }
  .modern-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .modern-hero-text {
    padding-bottom: 10px;
  }
  .hero-live-badge {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }
  .modern-hero-text h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  .modern-hero-text p {
    font-size: 14px;
    margin: 0 auto 14px auto;
    line-height: 1.5;
  }
  .hero-tags {
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
  }
  .hero-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
  .hero-btn-group {
    justify-content: center;
    gap: 10px;
  }
  .modern-hero-btn {
    padding: 10px 20px;
    font-size: 14px;
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  .modern-hero-img-wrapper {
    justify-content: center;
    margin-top: 10px;
  }
  .modern-hero-img-wrapper img {
    max-height: 340px;
    transform: none;
    margin: 0 auto;
  }
  .hero-floating-badge {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 12px;
  }
  .hero-badge-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 8px;
  }
  .hero-badge-1 {
    top: 10px;
    left: 10px;
  }
  .hero-badge-2 {
    bottom: 20px;
    right: 10px;
    left: auto;
  }
  .showcase-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Mobile Drawer Navigation */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 10001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-drawer-close {
  background: #f1f5f9;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #e2e8f0;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-link {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

