* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #ff6b35;
  --primary-yellow: #ffd23f;
  --primary-green: #4caf50;
  --primary-blue: #2196f3;
  --primary-red: #f44336;
  --primary-purple: #9c27b0;
  --bg-light: #fff8e1;
  --bg-dark: #1a1a1a;
  --text-dark: #333;
  --text-light: #666;
  --text-muted: #999;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 30px 60px rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  --gradient-success: linear-gradient(135deg, var(--primary-green) 0%, #66bb6a 100%);
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}


/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  animation: bounce 2s infinite;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-orange);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-orange);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Contact Hero Section */
.contact-hero {
  min-height: 100vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icons i {
  position: absolute;
  font-size: 2rem;
  color: var(--white);
  animation: floatIcon 8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-icons i:nth-child(1) {
  top: 20%;
  left: 10%;
}

.floating-icons i:nth-child(2) {
  top: 40%;
  right: 20%;
}

.floating-icons i:nth-child(3) {
  bottom: 30%;
  left: 15%;
}

.floating-icons i:nth-child(4) {
  top: 60%;
  right: 10%;
}

.floating-icons i:nth-child(5) {
  bottom: 20%;
  right: 30%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-visual {
  animation: slideInRight 1s ease-out 0.8s both;
}

.contact-illustration {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.illustration-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.illustration-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.illustration-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.illustration-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Information Section */
.contact-info {
  background: var(--white);
}

.contact-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: pulse 3s infinite;
}

.contact-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-hours,
.email-types {
  margin-bottom: 2rem;
}

.hour-item,
.email-type {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.hour-item i,
.email-type i {
  color: var(--primary-orange);
  width: 16px;
}

.address {
  margin-bottom: 1.5rem;
}

.address p {
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.office-hours {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.office-hours i {
  color: var(--primary-orange);
}

.contact-btn {
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateX(5px);
}

.social-link i {
  font-size: 1.2rem;
  width: 20px;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e8 100%);
}

.form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--text-light);
  z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.char-counter {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.error-message {
  color: var(--primary-red);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show {
  display: block;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background: var(--gradient-primary);
  border-color: var(--primary-orange);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: bold;
  font-size: 0.8rem;
}

.checkbox-text {
  color: var(--text-light);
}

.privacy-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: bold;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  flex: 1;
  justify-content: center;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.submit-btn.loading .btn-loader {
  display: block;
}

.submit-btn.loading span {
  display: none;
}



.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.sidebar-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.sidebar-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sidebar-link {
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  justify-content: center;
}

.sidebar-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-search {
  margin-bottom: 2rem;
}

.search-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.search-wrapper input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  display: none;
}

.search-clear.show {
  display: block;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category.active,
.faq-category:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.question-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.question-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.question-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0;
}

.question-toggle {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.faq-item.active .question-toggle {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.answer-content {
  padding: 0 2rem 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.answer-content p {
  margin-bottom: 1rem;
}

.answer-content ul,
.answer-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.answer-content li {
  margin-bottom: 0.5rem;
}

.answer-tip,
.answer-warning,
.answer-info,
.answer-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.answer-tip {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
}

.answer-warning {
  background: rgba(255, 67, 54, 0.1);
  border-left: 4px solid var(--primary-red);
}

.answer-info {
  background: rgba(33, 150, 243, 0.1);
  border-left: 4px solid var(--primary-blue);
}

.answer-success {
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid var(--primary-green);
}

.answer-tip i,
.answer-warning i,
.answer-info i,
.answer-success i {
  color: inherit;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.sync-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1rem 0;
}

.sync-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.earning-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.earning-method {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 15px;
}

.method-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.method-info h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.earning-rate {
  color: #ffc107;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.offline-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1rem 0;
}

.feature-group h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-group ul {
  list-style: none;
  padding: 0;
}

.feature-group li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.recovery-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1rem 0;
}

.recovery-option {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid #eee;
}

.option-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.option-icon.success {
  background: var(--gradient-success);
  color: var(--white);
}

.option-icon.warning {
  background: rgba(255, 67, 54, 0.1);
  color: var(--primary-red);
}

.option-content h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-rate {
  display: inline-block;
  background: var(--gradient-success);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 1rem;
}

.faq-footer {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 20px;
}

.faq-help h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.faq-help p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.help-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.help-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.help-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Download Promo Section */
.download-promo {
  background: var(--gradient-primary);
  color: var(--white);
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.promo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--white);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-large);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.app-preview {
  text-align: center;
  padding: 2rem;
}

.app-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.app-preview h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.app-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars i {
  color: #ffc107;
}

.app-rating span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.download-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.floating-features {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.feature-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  animation: floatBubble 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.feature-bubble:nth-child(1) {
  top: 10%;
  left: -20%;
}

.feature-bubble:nth-child(2) {
  top: 50%;
  right: -30%;
}

.feature-bubble:nth-child(3) {
  bottom: 20%;
  left: -25%;
}

.promo-info {
  color: var(--white);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.promo-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-info p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.promo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.promo-feature i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 200px;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-icon {
  font-size: 2rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
}

.btn-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
}

.promo-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.promo-stats .stat-item {
  flex: 1;
}

.promo-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.promo-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-light);
}

.contact-item i {
  color: var(--primary-orange);
  width: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: var(--text-light);
}


/* Animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 868px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .faq-categories {
    flex-direction: column;
    align-items: center;
  }

  .offline-features {
    grid-template-columns: 1fr;
  }

  .promo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .promo-features {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
  }

  .promo-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .help-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .container {
    padding: 0rem 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 6rem 1rem 2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-wrapper {
    padding: 2rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .promo-info h2 {
    font-size: 2rem;
  }

  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .recovery-steps {
    gap: 1rem;
  }

  .recovery-option {
    flex-direction: column;
    text-align: center;
  }
   .container {
    padding: 0rem 0.5rem;
  }
  
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

a {
  text-decoration: none;
  color: inherit;
}


/* Ensure the body and html do not allow horizontal overflow */
html,
body {
  width: 100%;
  overflow-x: hidden;
}


/* Contact Hero Section */


/* Floating icons to prevent overflow */
.floating-icons {
  width: 100%;
  overflow: hidden;
}

.floating-icons i {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  /* Responsive font size */
}

/* Hero container to prevent overflow */


/* Form Container */
.form-container {
  grid-template-columns: 1fr;
  /* Single column for all screens */
  gap: 2rem;
}

/* FAQ Categories */
.faq-categories {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-category {
  padding: 0.6rem 1rem;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

/* Promo Content */
.promo-content {
  grid-template-columns: 1fr;
  /* Single column for all screens */
  gap: 2rem;
}

/* Phone Mockup */
.phone-mockup {
  width: clamp(200px, 80vw, 280px);
  /* Responsive width */
  height: auto;
  aspect-ratio: 9/16;
  /* Maintain aspect ratio */
}

/* Footer */


/* Responsive Design */
@media (max-width: 868px) {
  .nav-menu {
    top: 60px;
    /* Adjusted to account for smaller navbar height */
    height: calc(100vh - 60px);
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    /* Single column for smaller screens */
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .promo-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 4rem 0.5rem 1rem;
  }

  .section {
    padding: 2rem 0.5rem;
  }

  .form-wrapper {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Prevent horizontal scrolling on all elements */
* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure inputs and textareas don't overflow */
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Fix floating features positioning */
.floating-features {
  width: 100%;
  overflow: hidden;
}

.feature-bubble {
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  padding: 0.6rem 0.8rem;
}

/* Adjust floating icons for smaller screens */
@media (max-width: 868px) {
  .floating-icons i:nth-child(1) {
    top: 10%;
    left: 5%;
  }

  .floating-icons i:nth-child(2) {
    top: 30%;
    right: 5%;
  }

  .floating-icons i:nth-child(3) {
    bottom: 40%;
    left: 10%;
  }

  .floating-icons i:nth-child(4) {
    top: 50%;
    right: 10%;
  }

  .floating-icons i:nth-child(5) {
    bottom: 20%;
    right: 15%;
  }
}