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

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Prevent horizontal scroll */
* {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 138, 0, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(255, 138, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f18723;
  flex-shrink: 0;
}

.logo img {
  width: 130px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  color: #f18723;
  background-color: rgba(241, 135, 35, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.search-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.search-btn:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.login-link:hover {
  color: #f18723;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f18723, #ff9a3d);
  color: white;
  box-shadow: 0 4px 15px rgba(241, 135, 35, 0.3);
  font-size: 0.9rem;
  padding: 0.7rem 1.25rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 135, 35, 0.4);
}

.btn-secondary {
  background: #f18723;
  color: white;
  border: 2px solid #f18723;
}

.btn-secondary:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.btn-cta {
  background: #f18723;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.3);
  margin-bottom: 24px;
}

.btn-cta:hover {
  background: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:nth-child(1) {
  background: #ff8a00;
  transform: scale(1.2);
}

.carousel-dot:nth-child(2) {
  background: #ffb366;
}

.carousel-dot:nth-child(3) {
  background: #d1d5db;
}

.carousel-dot:hover {
  opacity: 0.8;
}

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

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

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #ffeab1 0%, #ffffff 50%, #ffeab1 100%);
  position: relative;
  overflow: hidden;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: #ffb366;
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
} */

.hero::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: 100px;
  height: 100px;
  background: #ffeab1;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}

.container {
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Ellipse positioning */
.ellipse-bg {
  position: absolute;
  z-index: -1;
}

.ellipse-3 {
  top: 42%;
  right: 47%;
  width: 248px !important;
}

.ellipse-4 {
  top: 43%;
  right: 18%;
  width: 248px !important;
  height: auto;
}

.ellipse-6 {
  top: 13%;
  right: 58%;
  width: 243px !important;
}

.ellipse-6-copy {
  top: 13%;
  left: 45%;
  width: 243px !important;
}

.ellipse-8 {
  bottom: 87%;
  right: 31%;
  width: 275px !important;
  height: auto;
}

.ellipse-8-extra {
  top: 71%;
  right: 79%;
  width: 248px !important;
  height: auto;
  transform: rotate(180deg);
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.contacts-badge {
  top: 15%;
  right: 0;
  min-width: 200px;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

.contact-avatars {
  display: flex;
  gap: -2px;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -2px;
}

.excel-badge {
  bottom: 20%;
  left: -15%;
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  padding: 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.excel-text {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  margin-left: 8px;
}

.excel-icon {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

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

/* About Section */
.about {
  padding: 80px 0;
  background: #ffffff;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
}

.about-overlay-image {
  position: absolute;
  top: 0;
  max-width: 560px !important;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  box-shadow: none !important;
}

.about-main-image {
  position: relative;
  z-index: 10;
  left: 7%;
  max-width: 472px !important;
}

.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.about-decoration {
  position: absolute;
  opacity: 0.6;
}

.about-decoration-1 {
  top: -20%;
  right: 0;
  width: 120px;
  height: auto;
}

.about-decoration-2 {
  bottom: -10%;
  left: -20%;
  width: 100px;
  height: auto;
}

.about-decoration-3 {
  top: 50%;
  right: 0;
  width: 80px;
  height: auto;
  transform: translateY(-50%);
}

.about-decoration-4 {
  top: 10%;
  left: -30%;
  width: 150px;
  height: auto;
  opacity: 0.7;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text .highlight {
  color: #f18723;
}

.about-text p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Features Section */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background: #e5e7eb;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s ease;
  border: none;
  position: relative;
}

.feature-card:first-child {
  background: #f8ab1e;
  color: #333;
}

.feature-card:first-child h3,
.feature-card:first-child p {
  color: #333;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 1.5rem 0;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.5rem;
}

.feature-card:first-child .feature-icon {
  color: #333;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Platform Section */
.platform {
  padding: 80px 0;
  background: #f5f5f5;
  color: #333;
  position: relative;
  overflow: hidden;
}

.platform::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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.platform-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.platform-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0.9;
}

.btn-platform {
  background: #f18723;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-platform:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.mockup-header {
  background: #f8f9fa;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.mockup-tabs {
  display: flex;
  gap: 1rem;
}

.tab {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.tab.active {
  background: #f18723;
  color: white;
}

.mockup-content {
  padding: 2rem;
  color: #333;
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #f18723;
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  text-align: right;
}

.btn-send {
  background: #f18723;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #e67e22;
}

/* Channels Section */
.channels {
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.channels-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.channels-left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.channels-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.channels-list {
  display: flex;
  flex-direction: column;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.channel-item:hover {
  background: rgba(255, 138, 0, 0.1);
  transform: translateX(10px);
}

.channel-icon {
  width: 40px;
  height: 40px;
  background: #ffeab1;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5a00;
  font-size: 1rem;
}

.channel-item span {
  font-weight: 700;
  color: #333;
  font-size: 0.875rem;
}

.channels-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.channels-image img {
  width: 100%;
  max-width: 560px !important;
  height: auto;
  border-radius: 20px;
}

.channels-stats-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  overflow: hidden;
  z-index: 2;
  transition: transform 0.3s ease;
}

.channels-stats-overlay:hover {
  transform: scale(1.05);
}

.channels-stats-overlay .stat-box {
  text-align: center;
  padding: 1.5rem 1.2rem;
  color: white;
  min-width: 120px;
  position: relative;
}

.channels-stats-overlay .stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.channels-stats-overlay .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.channels-stats-overlay .stat-label {
  font-size: 0.85rem;
  opacity: 0.95;
  line-height: 1;
}

/* Floating Message Badges */
.floating-message-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  z-index: 3;
  min-width: 200px;
}

.badge-1 {
  top: 15%;
  left: -15%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  right: 0;
  animation-delay: 1.5s;
}

.message-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #68e365, #4caf50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.message-icon.blue {
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.message-number {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.message-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  line-height: 1;
}

/* Responsive adjustments for floating badges */
@media (max-width: 768px) {
  .floating-message-badge {
    min-width: 160px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .badge-1 {
    top: 10%;
    left: -10%;
  }

  .badge-2 {
    bottom: 15%;
    right: 0;
  }

  .message-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .message-number {
    font-size: 16px;
  }

  .message-label {
    font-size: 11px;
  }

  .channels-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .floating-message-badge {
    display: none;
  }
}

.notification-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
}

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

/* Hide old stats section */
.channels-stats {
  display: none;
}

.stat-box {
  text-align: center;
}

.stat-box .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  font-size: 1.125rem;
  font-weight: 200;
  opacity: 0.9;
}

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

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.why-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-card-2 {
  flex-direction: row !important;
  gap: 1rem;
}

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

.why-card-content {
  flex: 1;
  text-align: right;
  padding-left: 1rem;
}

.why-card-content-2 {
  flex: 1;
  text-align: left;
  padding-left: 1rem;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: #ffeab1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5a00;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: #666;
  line-height: 1.4;
  font-size: 0.9rem;
}

.why-button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary {
  background: #f18723;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e67e22;
  transform: translateY(-3px);
}

/* Responsivo para a seção why-choose */
@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 1.25rem;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #ffffff;
  color: #333;
}

.pricing-header {
  margin-bottom: 3rem;
}

.pricing-top {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-top h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  line-height: 2.7rem;
  width: 50%;
}

.pricing-top h3 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 1rem;
  line-height: 2rem;
}

.pricing-description {
  text-align: left;
  font-size: 1.2rem;
  margin-top: 3rem;
}

.pricing-divider {
  width: 2px;
  height: 80px;
  background-color: #f18723;
  justify-self: center;
}

.pricing-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pricing-intro .highlight {
  color: #ffd700;
}

.pricing-intro p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

.pricing-title h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}

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

/* Pricing Section refinements */
.pricing-card {
  text-align: left;
  min-height: 220px;
}

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

.pricing-card.featured {
  border: 3px solid #ffd700;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #f18723);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.plan-label {
  color: #ffb366;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.plan-features {
  margin-bottom: 0.75rem;
}

.plan-features p {
  margin: 0.15rem 0;
  color: #d7e7ff;
  font-size: 0.9rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.plan-price .currency {
  font-size: 1rem;
  font-weight: 500;
  color: #ffd700;
}

.plan-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffc010;
  margin-left: 0.25rem;
}

.plan-price .period {
  font-size: 1rem;
  color: #ddd;
  margin-left: 0.25rem;
}

.plan-description {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.register-text {
  color: #f18723;
}

.btn-plan {
  background: #f18723;
  color: #0c0c0c;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 200;
  width: auto;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: linear-gradient(135deg, #e67e22, #ff9a3d);
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f9f1db;
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  min-height: 650px;
}

.contact-form-wrapper {
  background: #ffdd82;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 450px;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f18723;
  box-shadow: 0 0 0 3px rgba(241, 135, 35, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-contact,
.contact-submit-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  display: inline-block;
  margin-top: 0.5rem;
}

.btn-contact:hover,
.contact-submit-btn:hover {
  background: #e67e22;
  transform: translateY(-1px);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-links span {
  font-size: 0.9rem;
  color: #666;
  margin-right: 0.5rem;
}

.social-link {
  width: 32px;
  height: 32px;
  background: #8b4513;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: 0.8;
}

.contact-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background-image: url("img/Group 36867.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 1;
}

.contact-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.contact-stats {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 3;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

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

.stat-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-circle.blue {
  background: #74b9ff;
}

.stat-circle.green {
  background: #00b894;
}

.stat-circle.orange {
  background: #fdcb6e;
}

.stat-circle.gray {
  background: #b2bec3;
}

.stat-percent {
  margin-left: auto;
  font-weight: 600;
  color: #333;
}

.contact-chat-bubble {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f18723;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
  animation: bounce 2s infinite;
}

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

/* Stats Section */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #f18723, #ff9a3d);
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design - Media Queries */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    gap: 2rem;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .floating-element {
    display: none;
  }
  
  .pricing-top {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-top h2,
  .pricing-top h3 {
    width: 100%;
    margin-left: 0;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  .header-content {
    padding: 0.75rem 0;
  }
  
  .logo img {
    width: 100px;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
  }
  
  .nav.mobile-open .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0 20px;
  }
  
  .nav.mobile-open .nav-link {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: left;
  }
  
  .nav.mobile-open .nav-link:last-child {
    border-bottom: none;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .login-link {
    display: none;
  }
  
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  
  .hero-text {
    order: 1;
    padding: 0 1rem;
  }
  
  .hero-image {
    order: 2;
    margin-top: 1rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  
  .btn-cta {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .about {
    padding: 50px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    padding: 0 1rem;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .features {
    padding: 50px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact {
    padding: 50px 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-form-wrapper {
    min-width: auto;
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-stats {
    position: static;
    transform: none;
    margin-top: 1rem;
    right: auto;
    top: auto;
  }
  
  .pricing {
    padding: 50px 0;
  }
  
  .pricing-top {
    padding: 0 1rem;
  }
  
  .pricing-top h2,
  .pricing-top h3 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  
  .pricing-description {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .plan-price .amount {
    font-size: 2rem;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .header-content {
    padding: 0.75rem 0;
  }
  
  .logo img {
    width: 100px;
  }
  
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 0.9rem;
  }
  
  .btn-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .about-text h2 {
    font-size: 1.75rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-contact,
  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
  
  .pricing-top h2,
  .pricing-top h3 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  
  .pricing-description {
    font-size: 0.9rem;
  }
  
  .plan-header h4 {
    font-size: 1.3rem;
  }
  
  .plan-price .amount {
    font-size: 1.8rem;
  }
  
  .btn-plan {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Footer */
.footer {
  background: #fefefe;
  color: #000;
  padding: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header h3 {
  color: #f18723;
  font-weight: 700;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(241, 135, 35, 0.1);
  color: #f18723;
}

.mobile-menu-actions {
  padding: 1.5rem;
  border-top: 1px solid #eee;
}

.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    gap: 1.5rem;
  }

  .nav-list {
    gap: 1.25rem;
  }

  .header-actions {
    gap: 1rem;
  }

  .hero-content,
  .about-content,
  .platform-content,
  .channels-content,
  .pricing-header,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

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

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

  .channels-image {
    order: -1;
  }

  .channels-stats-overlay {
    bottom: 10px;
    right: 10px;
  }

  .channels-stats-overlay .stat-box {
    padding: 1rem 0.8rem;
    min-width: 90px;
  }

  .channels-stats-overlay .stat-number {
    font-size: 1.4rem;
  }

  .channels-stats-overlay .stat-label {
    font-size: 0.75rem;
  }

  .pricing-header {
    text-align: center;
  }

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

  .contact-content {
    text-align: center;
  }
}

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

  .header-content {
    gap: 1rem;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .search-btn {
    width: 35px;
    height: 35px;
  }

  .login-link {
    font-size: 0.85rem;
  }

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

  .hero {
    padding: 100px 0 60px;
  }

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

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

  .about-text h2 {
    font-size: 2rem;
  }

  .platform-text h2 {
    font-size: 2rem;
  }

  .channels {
    padding: 50px 0;
  }
  
  .channels-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 1rem;
  }
  
  .channels-text {
    text-align: left;
    order: 1;
  }
  
  .channels-text h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .channels-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .channel-item {
    background: white;
    padding: 1.2rem 1rem;
    border-radius: 0;
    border-left: 3px solid #f18723;
    border-bottom: 1px solid #e9ecef;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .channel-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .channel-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom: none;
  }
  
  .channel-item:hover {
    background: #f8f9fa;
    transform: none;
  }
  
  .channel-icon {
    width: 45px;
    height: 45px;
    background: #ffeab1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f18723;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  
  .channel-item span {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
  }
  
  .channels-image {
    display: none;
  }
  
  .channels-stats-overlay {
    display: none;
  }

  .pricing-intro h2 {
    font-size: 2rem;
  }

  .pricing-title h3 {
    font-size: 1.5rem;
  }

  .contact-form-wrapper h2 {
    font-size: 2rem;
  }

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

  .channels-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
  }

  .channels-stats-overlay {
    bottom: 5px;
    right: 5px;
  }

  .channels-stats-overlay .stat-box {
    padding: 0.8rem 0.6rem;
    min-width: 70px;
  }

  .channels-stats-overlay .stat-number {
    font-size: 1.2rem;
  }

  .channels-stats-overlay .stat-label {
    font-size: 0.7rem;
  }

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

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

  .dashboard-mockup {
    max-width: 400px;
  }

  .mockup-content {
    padding: 1.5rem;
  }
}

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

  .header-content {
    gap: 0.75rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .search-btn {
    width: 32px;
    height: 32px;
  }

  .login-link {
    font-size: 0.8rem;
  }

  .logo img {
    width: 100px;
  }

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

  .about-text h2 {
    font-size: 1.75rem;
  }

  .platform-text h2 {
    font-size: 1.75rem;
  }

  .channels-text h2 {
    font-size: 1.75rem;
  }

  .pricing-intro h2 {
    font-size: 1.75rem;
  }

  .pricing-title h3 {
    font-size: 1.25rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.75rem;
  }

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

  .feature-card {
    padding: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 1.5rem;
  }

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

  .pricing-card {
    padding: 1.5rem;
  }

  .plan-price .amount {
    font-size: 2rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .channels-stats {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .stat-box .stat-number {
    font-size: 2rem;
  }

  .dashboard-mockup {
    max-width: 300px;
  }

  .mockup-content {
    padding: 1rem;
  }

  .notification-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .channel-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-chat-bubble {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.5rem 0.75rem;
  }

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

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

.hero-text,
.about-text,
.feature-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
  outline: 2px solid #f18723;
  outline-offset: 2px;
}

/* Pricing prototype overrides (append) */
.pricing-card {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  border-radius: 20px;
  padding: 1rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  color: white;
  min-height: 220px;
}

.plan-label {
  color: #ffb366;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.plan-features {
  margin-bottom: 0.75rem;
}
.plan-features p {
  margin: 0.15rem 0;
  color: #d7e7ff;
  font-size: 0.7rem;
}

.plan-price {
  justify-content: space-between;
}

.pricing-card .plan-price .amount {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Success Message Styles */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s ease;
}

.success-icon {
  margin-bottom: 1.5rem;
}

.success-icon i {
  font-size: 4rem;
  color: #28a745;
}

.success-content h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.success-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-close-btn:hover {
  color: #333;
  background: #f5f5f5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Toast Notification Styles */
.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  width: 100%;
  max-width: 450px;
  animation: slideDown 0.5s ease forwards;
}

.toast-content {
  background-color: #ffdd82;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid #f18723;
}

.toast-icon {
  flex-shrink: 0;
  margin-right: 12px;
}

.toast-icon i {
  font-size: 24px;
  color: #f18723;
}

.toast-message {
  flex-grow: 1;
}

.toast-message h4 {
  margin: 0 0 4px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.toast-message p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.toast-close-btn {
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  margin-left: 8px;
  transition: color 0.2s;
}

.toast-close-btn:hover {
  color: #333;
}

@keyframes slideDown {
  from {
    transform: translate(-50%, -20px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* Mobile responsiveness for toast notification */
@media (max-width: 768px) {
  .toast-notification {
    max-width: 90%;
  }
  
  .toast-message h4 {
    font-size: 15px;
  }
  
  .toast-message p {
    font-size: 13px;
  }
}
