/* Dropdown Navigation Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-parent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-arrow {
  font-size: 0.7rem !important;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  padding: 0.8rem 0;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Show dropdown on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reset list item styles for dropdown */
.dropdown-menu li {
  margin: 0;
  padding: 0;
  display: block;
}

/* Dropdown links */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.3rem;
  color: #2c3e50 !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #4a90e2 !important;
  padding-left: 1.6rem;
  transform: translateX(3px);
}

/* Dropdown icons */
.dropdown-menu a i {
  display: block !important;
  font-size: 0.9rem;
  color: #666;
  width: 16px;
  text-align: center;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover i {
  color: #4a90e2;
}

/* Dropdown arrow pointer */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    min-width: auto;
    padding: 0.5rem 0 0 1rem;
    border: none;
    margin-top: 0.5rem;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    gap: 0.6rem;
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: #4a90e2 !important;
    padding-left: 0;
    transform: none;
  }

  .dropdown-menu a i {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem;
  }

  .dropdown-menu a:hover i {
    color: #4a90e2 !important;
  }

  .dropdown-arrow {
    display: none;
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: none;
  }
}

/* Beginner Guide Page Styles */

/* Guide Header */
.guide-header {
  background: rgb(33, 50, 91);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guide-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.guide-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}

.guide-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

/* Guide Content */
.guide-content {
  background: white;
  padding: 4rem 0;
}

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

/* First Steps Section */
.first-steps-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

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

.step-card {
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  background: #4a90e2;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 2rem;
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.step-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Paid Survey Section */
.paid-survey-section {
  padding: 6rem 0;
  background: white;
}

.two-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.column p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: justify;
}

/* How Surveys Work Section - COMPLETELY CLEAN */
.how-surveys-work-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 5rem;
  margin-top: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
}

.feature-icon.blue {
  background: #e3f2fd;
  color: #1976d2;
}

.feature-icon.green {
  background: #e8f5e8;
  color: #4caf50;
}

.feature-icon.purple {
  background: #f3e5f5;
  color: #9c27b0;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: 1;
}

.feature-icon i {
  font-size: 1.4rem;
}

.feature-content {
  flex-grow: 1;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.feature-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  text-align: justify;
}

/* Additional styles for maximize earnings page */
/* Additional styles for maximize earnings page */
.maximize-hero {
  background: rgb(33, 50, 91);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.maximize-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.maximize-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.maximize-hero .breadcrumb {
  margin-bottom: 2rem;
}

.maximize-hero .breadcrumb-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}

.maximize-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

.tips-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.tips-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.tips-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.tips-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5rem;
  margin-top: 4rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.tip-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.tip-icon.blue {
  background: #e3f2fd;
  color: #1976d2;
}

.tip-icon.green {
  background: #e8f5e8;
  color: #4caf50;
}

.tip-icon.purple {
  background: #f3e5f5;
  color: #9c27b0;
}

.tip-icon.orange {
  background: #fff3e0;
  color: #ff9800;
}

.tip-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.tip-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  text-align: justify;
}

.promotion-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promotion-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.promotion-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.promotion-card .card-icon.blue {
  background: #e3f2fd;
  color: #1976d2;
}

.promotion-card .card-icon.purple {
  background: #f3e5f5;
  color: #9c27b0;
}

.promotion-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.promotion-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .maximize-hero h1 {
    font-size: 2rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .maximize-hero h1 {
    font-size: 2rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .promotion-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .promotion-card {
    padding: 2rem 1.5rem;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-item {
    gap: 1.2rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon img {
    width: 28px;
    height: 28px;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }
}

/* Testimonial Section */
.testimonial-section {
  padding: 6rem 0;
  background: white;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-header {
  background: rgb(33, 50, 91);
  color: white;
  padding: 2.5rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-dots {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.dot.small {
  width: 8px;
  height: 8px;
}

.testimonial-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.testimonial-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-logo i {
  color: #4a90e2;
}

.testimonial-content {
  background: rgb(33, 50, 91);
  color: white;
  padding: 2.5rem;
  border-radius: 0 0 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
}

.orange-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff9500, #ffb347);
  top: 20%;
  left: 10%;
  opacity: 0.8;
}

.small-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4a90e2, #64b5f6);
  top: 70%;
  left: 80%;
  opacity: 0.6;
}

.blue-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a90e2, #64b5f6);
  top: 40%;
  right: 15%;
  opacity: 0.7;
}

.decoration-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 60px solid rgba(74, 144, 226, 0.3);
  position: absolute;
  top: 60%;
  left: 20%;
  transform: rotate(45deg);
}

.decoration-lines {
  position: absolute;
  top: 30%;
  right: 25%;
  width: 60px;
  height: 60px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(74, 144, 226, 0.2) 5px,
    rgba(74, 144, 226, 0.2) 8px
  );
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

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

.cta-button {
  background: #4a90e2;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Active Navigation States */
.nav-dropdown.active .dropdown-parent {
  color: #4a90e2 !important;
}

.dropdown-menu a.active {
  background: #f0f7ff;
  color: #4a90e2 !important;
  border-left: 3px solid #4a90e2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .guide-title {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }

  .feature-header-section {
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon img {
    width: 28px;
    height: 28px;
  }

  .feature-box h3 {
    font-size: 1.1rem;
  }

  .feature-box p {
    font-size: 0.95rem;
  }

  .testimonial-header,
  .testimonial-content {
    padding: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Ensure dropdown doesn't interfere with mobile menu toggle */
@media (max-width: 768px) {
  .nav-menu {
    position: relative;
  }

  .dropdown-menu {
    width: 100%;
  }
}
