/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
}

.text-orange {
  color: #ea580c;
}

.text-amber {
  color: #d97706;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #ea580c;
  color: white;
}

.btn-primary:hover {
  background-color: #dc2626;
}

.btn-outline {
  background-color: transparent;
  color: #ea580c;
  border: 2px solid #ea580c;
}

.btn-outline:hover {
  background-color: #fff7ed;
}

.btn-white {
  background-color: white;
  color: #ea580c;
}

.btn-white:hover {
  background-color: #f9fafb;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #fed7aa;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1f2937;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo i {
  color: #ea580c;
  width: 2rem;
  height: 2rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #ea580c;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  background-color: white;
}

.mobile-nav a {
  text-decoration: none;
  color: #374151;
  padding: 0.75rem 0;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #ea580c;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #fffbeb 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #6b7280;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat i {
  color: #ea580c;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.zoom-mockup {
  background: linear-gradient(135deg, #fed7aa, #fde68a);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.zoom-window {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.zoom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.zoom-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.control.red {
  background-color: #ef4444;
}
.control.yellow {
  background-color: #eab308;
}
.control.green {
  background-color: #22c55e;
}

.zoom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.participant {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.avatar.orange {
  background-color: #fed7aa;
  color: #c2410c;
}

.avatar.amber {
  background-color: #fde68a;
  color: #b45309;
}

.name {
  font-weight: 500;
  font-size: 0.875rem;
}

.subject {
  font-size: 0.75rem;
  color: #6b7280;
}

.pomodoro-display {
  background-color: #fff7ed;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 1rem;
}

.timer {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ea580c;
}

.timer-label {
  font-size: 0.875rem;
  color: #c2410c;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.feature-card.orange {
  background-color: #fff7ed;
}

.feature-card.amber {
  background-color: #fffbeb;
}

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

.feature-card.orange:hover {
  background-color: #fed7aa;
}

.feature-card.amber:hover {
  background-color: #fde68a;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-card.amber .feature-icon {
  background-color: #d97706;
}

.feature-icon i {
  color: white;
  width: 2rem;
  height: 2rem;
}

.feature-card h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #6b7280;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #ea580c, #d97706);
  border-radius: 1rem;
  padding: 3rem;
  color: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cta-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-text ul {
  list-style: none;
}

.cta-text li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cta-text li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.habit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.habit-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.habit-label {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.habit-desc {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* Packages Section */
.packages {
  background-color: #f9fafb;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fed7aa;
  color: #c2410c;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.package-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
}

.package-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
  border-color: #ea580c;
  box-shadow: 0 0 0 1px #ea580c;
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ea580c;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.package-icon {
  width: 3rem;
  height: 3rem;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.package-card.popular .package-icon {
  background-color: #ea580c;
}

.package-icon i {
  color: #6b7280;
  width: 1.5rem;
  height: 1.5rem;
}

.package-card.popular .package-icon i {
  color: white;
}

.package-card h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.package-card > p {
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.package-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.currency {
  color: #6b7280;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.package-features i {
  color: #22c55e;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
}

.consultation-cta {
  text-align: center;
}

.consultation-cta p {
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  background-color: white;
}

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

.feature-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background-color: #fff7ed;
}

.feature-item .feature-icon {
  background-color: #fed7aa;
  margin-bottom: 1rem;
}

.feature-item:hover .feature-icon {
  background-color: #fdba74;
}

.feature-item .feature-icon i {
  color: #ea580c;
}

.feature-item h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

/* Pomodoro Timer Section */
.pomodoro-section {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.pomodoro-timer {
  max-width: 28rem;
  margin: 0 auto;
}

.timer-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
}

.timer-header {
  text-align: center;
  margin-bottom: 2rem;
}

.timer-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background-color: #fed7aa;
}

.timer-icon.break {
  background-color: #bbf7d0;
}

.timer-icon i {
  color: #ea580c;
  width: 2rem;
  height: 2rem;
}

.timer-icon.break i {
  color: #16a34a;
}

.timer-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timer-header p {
  color: #6b7280;
}

.timer-display {
  font-size: 4rem;
  font-weight: 700;
  color: #ea580c;
  text-align: center;
  margin-bottom: 2rem;
  font-variant-numeric: tabular-nums;
}

.timer-display.break {
  color: #16a34a;
}

.timer-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.sessions-counter {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.sessions-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.sessions-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.timer-tip {
  margin-top: 2rem;
  text-align: center;
}

.timer-tip p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Testimonials Section */
.testimonials {
  background-color: #f9fafb;
}

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

.testimonial-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card .avatar {
  width: 3rem;
  height: 3rem;
  background-color: #fed7aa;
  color: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.user-info .name {
  font-weight: 600;
  color: #1f2937;
}

.user-info .role {
  font-size: 0.875rem;
  color: #6b7280;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
  fill: currentColor;
}

.testimonial-card p {
  font-style: italic;
  color: #374151;
}

/* FAQ Section - EN BASİT CSS */
.faq {
  background-color: white;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: #f9fafb;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1f2937;
  transition: background-color 0.2s ease;
  font-size: 1rem;
}

.faq-question:hover {
  background-color: #f3f4f6;
}

.faq-question i {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: white;
  padding: 1.5rem;
  display: block;
}

.faq-item.active .faq-answer {
  display: block;
  padding: 1.5rem;
}

.faq-answer p {
  color: #374151;
  margin: 0;
}

/* Contact Section */
.contact {
  background-color: #f9fafb;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fed7aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #ea580c;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-label {
  font-weight: 600;
  color: #1f2937;
}

.contact-value {
  color: #6b7280;
}

.consultation-banner {
  background: linear-gradient(135deg, #ea580c, #d97706);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: white;
}

.consultation-banner h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.consultation-banner p {
  opacity: 0.9;
  margin-bottom: 1rem;
  color: white;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: #f97316;
  width: 2rem;
  height: 2rem;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-link i {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #f97316;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-item i {
  color: #f97316;
  width: 1rem;
  height: 1rem;
}

.footer-contact-item span {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f97316;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .timer-display {
    font-size: 3rem;
  }

  .timer-controls {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .timer-display {
    font-size: 2.5rem;
  }

  .zoom-mockup {
    padding: 1rem;
  }

  .zoom-window {
    padding: 1rem;
  }

  .cta-banner {
    padding: 2rem;
  }

  .cta-text h3 {
    font-size: 1.5rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ea580c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #dc2626;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.hidden {
  display: none;
}

.active {
  display: block;
}

/* WhatsApp Contact Styles */
.whatsapp-contact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.whatsapp-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.whatsapp-icon i {
  color: white;
  width: 2rem;
  height: 2rem;
}

.whatsapp-card h3 {
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.whatsapp-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.whatsapp-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #1f2937;
}

.whatsapp-number i {
  color: #25d366;
  width: 1.25rem;
  height: 1.25rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
}

.whatsapp-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.whatsapp-features .feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
}

.whatsapp-features .feature i {
  color: #22c55e;
  width: 1rem;
  height: 1rem;
}
