/* 
===========================
Astral - Astral Projection App Landing Page
Styles based on Zapper template
===========================
*/

/* Base Styles & Variables
========================== */
:root {
  --transform-fix: 'none';
  --transition: all 0.25s ease;
  --primary-color: #4B086D;  /* Deep purple */
  --secondary-color: #6D3B97;  /* Lighter purple */
  --dark-purple: #1B0324;  /* Dark purple */
  --text-color: #ffffff;  /* White text for better contrast */
  --heading-color: #ffffff;  /* White headings */
  --nav-text-color: #ffffff;  /* White navigation text */
  --accent-color: #d66efd;
  --dark-color: #151c39;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  overflow-x: hidden;
  position: relative;
  background: #f8f9ff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 50px;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: 0 auto;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 20px;
}

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

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

section {
  padding: 100px 0;
  position: relative;
}

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

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5rem;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
}

header.sticky {
  background: rgba(27, 3, 36, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 1rem 5rem;  /* Keep padding consistent */
}

header.sticky nav ul li a {
  color: var(--nav-text-color);
}

.logo {
  z-index: 100;
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;  /* Doubled from current size */
  width: auto;
  transition: all 0.3s ease;
}

nav {
  z-index: 100;
  height: 40px;  /* Fixed height for navigation */
  display: flex;
  align-items: center;
}

nav > ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  height: 100%;
}

nav > ul > li {
  margin-left: 3rem;
  position: relative;
}

nav > ul > li > a {
  font-size: 1.4rem;
  color: var(--nav-text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: block;
}

nav > ul > li > a:hover {
  color: var(--secondary-color);
}

/* Hide specific submenu items */
nav > ul > li > ul {
  display: none;  /* This will hide all submenus */
}

/* Hide specific menu items */
nav > ul > li:first-child,  /* This hides the Home with its submenu */
nav > ul > li:last-child {  /* This hides the Pages with its submenu */
  display: none;
}

/* Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #4B086D 0%, #1B0324 100%);
  padding: 18rem 0 10rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.hero-content {
  width: 45%;
  position: relative;
  z-index: 2;
  padding-left: 5rem;
}

.hero-content h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-image {
  width: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  animation: floatImage 4s ease-in-out infinite alternate;
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(109, 59, 151, 0.1), transparent);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background: url(../images/hero-bg-shape.png) no-repeat;
  background-size: cover;
  background-position: left center;
  z-index: 0;
  opacity: 0.1;  /* Make the shape subtle */
}

/* Adjust app buttons container spacing */
.hero .app-buttons {
  margin-top: 4rem;
  position: relative;
  z-index: 3;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 130px 0 60px;
  }
  
  .hero-content {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Features Section
========================== */
.features {
  background: white;
  padding: 120px 0;
  text-align: center;
}

/* Main heading and description */
.section-title h2,
.features h2 {
  color: var(--primary-color) !important;
}

.section-title p,
.features > p {
  color: #333 !important;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* Card container */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card styles */
.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-top: -45px;
  padding-top: 55px;
}

/* Force all text colors */
.feature-card h3,
.feature-item h3,
.feature-card .h3,
.feature-item .h3 {
  color: var(--primary-color) !important;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p,
.feature-item p,
.feature-card .description,
.feature-item .description {
  color: #333 !important;
  font-size: 15px;
  line-height: 1.6;
}

/* Additional color overrides */
.features .feature-grid .feature-item * {
  color: #333 !important;
}

.features .feature-grid .feature-item h3,
.features .feature-grid .feature-item .h3 {
  color: var(--primary-color) !important;
}

/* Only icons should be white */
.feature-icon {
  color: white !important;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 28px;
}

/* Icon backgrounds */
.feature-item:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
}

.feature-item:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.feature-item:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
}

.feature-item:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #c3cfe2 0%, #c3cfe2 100%);
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-10px);
}

/* Most specific selectors as a last resort */
[class*="feature"] h3,
[class*="feature"] .h3 {
  color: var(--primary-color) !important;
}

[class*="feature"] p,
[class*="feature"] .description {
  color: #333 !important;
}

/* App Benefits Section - Enhanced Design
========================== */
.app-benefits {
  background: linear-gradient(135deg, #1B0324 0%, #4B086D 100%);
  text-align: left;  /* Changed to left alignment */
  padding: 120px 0;
  position: relative;
}

.app-benefits h2 {
  color: white !important;
  margin-bottom: 60px;
  font-size: 3rem;
  text-align: center;  /* Keep title centered */
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* Changed to 2 columns */
  gap: 60px;  /* Increased gap between columns */
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.benefit {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 40px 40px 100px;  /* Increased left padding for icon */
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;  /* Space between stacked items */
}

/* Icon styling - moved to left side */
.benefit i {
  position: absolute;
  top: 50%;
  left: -30px;  /* Position icon outside the box */
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit h3 {
  color: white !important;
  font-size: 1.4rem;
  margin: 0 0 10px;
  font-weight: 600;
}

.benefit p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

/* Hover effects */
.benefit:hover {
  transform: translateX(10px);  /* Changed to horizontal movement */
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit:hover i {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Left column benefits - keep existing styles */
.benefits-column:first-child .benefit {
  padding: 40px 40px 40px 100px;  /* More padding on left for icon */
}

.benefits-column:first-child .benefit i {
  left: -30px;
  right: auto;
  transform: translateY(-50%);
}

/* Right column benefits - adjust for right-side icons */
.benefits-column:last-child .benefit {
  padding: 40px 100px 40px 40px;  /* More padding on right for icon */
  text-align: right;  /* Align text to the right */
}

.benefits-column:last-child .benefit i {
  left: auto;
  right: -30px;
  transform: translateY(-50%);
}

/* Hover effects adjustment */
.benefits-column:first-child .benefit:hover {
  transform: translateX(10px);
}

.benefits-column:last-child .benefit:hover {
  transform: translateX(-10px);
}

/* Adjust icon hover effects */
.benefits-column:first-child .benefit:hover i {
  transform: translateY(-50%) scale(1.1);
}

.benefits-column:last-child .benefit:hover i {
  transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;  /* Stack on mobile */
  }
  
  .benefits-column:first-child .benefit,
  .benefits-column:last-child .benefit {
    padding: 70px 30px 40px;
    text-align: center;
  }
  
  .benefits-column:first-child .benefit i,
  .benefits-column:last-child .benefit i {
    left: 50%;
    right: auto;
    top: -30px;
    transform: translateX(-50%);
  }
  
  .benefits-column:first-child .benefit:hover,
  .benefits-column:last-child .benefit:hover {
    transform: translateY(-10px);
  }
  
  .benefits-column:first-child .benefit:hover i,
  .benefits-column:last-child .benefit:hover i {
    transform: translateX(-50%) scale(1.1);
  }
}

/* How It Works - Light Theme
========================== */
.how-it-works {
  background: #f8f9ff;
  text-align: center;
  padding: 120px 0;
}

.how-it-works h2 {
  color: var(--primary-color);
}

.how-it-works p {
  color: #333;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
}

.step {
  flex: 1;
  padding: 0 20px;
  position: relative;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50px;
  width: 100px;
  height: 2px;
  background: #e6e6e6;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
}

/* Testimonials Section
========================== */
.testimonials {
  background: linear-gradient(135deg, #4B086D 0%, #1B0324 100%);
  padding: 15rem 0;
  position: relative;
  text-align: center;
}

.testimonials h2 {
  color: white !important;
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
}

/* Testimonial Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* Changed to 2 columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Restored sleek avatar styling */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  transition: all 0.3s ease;
}

.testimonial:hover .testimonial-avatar {
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.testimonial-info h4 {
  color: white !important;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.testimonial-info span {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1.2rem;
}

.testimonial-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

/* Stats Section */
.stats {
  text-align: center;
  margin-top: 60px;
}

.stat {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.stat h3 {
  color: white !important;
  font-size: 3rem;
  margin-bottom: 15px;
}

.stat p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.6rem;
}

/* Hover Effects */
.testimonial {
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial {
    text-align: center;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-avatar {
    margin: 0 auto 15px;
  }
}

/* FAQ Section
========================== */
.faq {
  background-color: white;
  padding: 15rem 0;
  text-align: center;  /* Center all content */
}

.faq h2 {
  color: var(--primary-color) !important;
  text-align: center;
  margin-bottom: 50px;
}

.accordion {
  max-width: 800px;
  margin: 50px auto;
  text-align: left;  /* Keep accordion content left-aligned */
}

.faq .accordion-item {
  margin-bottom: 2rem;
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq .accordion-item h5 {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2.5rem 3rem;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: var(--transition);
  color: var(--primary-color) !important;  /* Force deep purple for questions */
}

.faq .accordion-content {
  padding: 0 3rem 2.5rem;
  display: none;
  color: #333 !important;  /* Force dark gray for answer text */
}

.faq .accordion-content p {
  color: #333 !important;  /* Ensure paragraph text is dark */
}

.faq .accordion-item.active .accordion-content {
  display: block;
}

.faq .accordion-item h5::after {
  content: '+';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: var(--primary-color);
}

.faq .accordion-item.active h5::after {
  content: '-';
}

/* Pricing Section - Dark Theme
========================== */
/* Pricing Section - Dark Theme
========================== */
.pricing {
    background: linear-gradient(135deg, #1B0324 0%, #4B086D 100%);
    text-align: center;
    color: white;
    padding: 120px 0;
  }
  
  .pricing h2 {
    color: white;
  }
  
  .pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .plan {
    flex: 1;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
  }
  
  .plan:hover {
    transform: translateY(-10px);
  }
  
  .plan.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  
  /* Updated plan title styles with gradients */
  .pricing .plan h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-size: 200% auto;
    transition: all 0.3s ease;
  }
  
  /* Free plan gradient */
  .pricing .plan:nth-child(1) h4 {
    background-image: linear-gradient(135deg, #5B86E5 0%, #36D1DC 100%);
    box-shadow: 0 5px 15px rgba(91, 134, 229, 0.3);
  }
  
  /* Plus plan gradient */
  .pricing .plan:nth-child(2) h4 {
    background-image: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.3);
}
  
  /* Pro plan gradient */
  .pricing .plan:nth-child(3) h4 {
    background-image: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
  }
  
  /* Hover effect for plan titles */
  .pricing .plan h4:hover {
    background-position: right center;
    transform: translateY(-2px);
  }
  
  .plan h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: white !important;
  }
.plan p {
    color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 25px;
}

.plan ul {
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.plan ul li {
  padding: 8px 0 8px 25px;
  position: relative;
}

.plan ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.btn-plan {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-plan:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* App Preview - Light Theme
========================== */
.app-preview {
  background: white;
  text-align: center;
  padding: 120px 0;
}

.app-preview h2 {
  color: var(--primary-color);
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.preview-gallery img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.preview-gallery img:hover {
  transform: scale(1.05);
}

/* Blog Section - Dark Theme
========================== */
.blog {
  background: linear-gradient(135deg, #4B086D 0%, #1B0324 100%);
  text-align: center;
  color: white;
  padding: 120px 0;
}

.blog h2 {
  color: white;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1000px;
}

.post {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post h3 {
  padding: 0 20px;
  margin-top: 20px;
}

.post .meta {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.post p {
  padding: 0 20px 20px;
}

.btn-blog {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 20px;
}

.btn-blog:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Newsletter Section
========================== */
.newsletter {
  text-align: center;
  padding: 80px 0;
}

.newsletter form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
}

.newsletter button {
  padding: 0 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter button:hover {
  background: var(--accent-color);
}

/* Footer
========================== */
footer {
  background: var(--dark-color);
  color: #aaa;
  padding: 80px 0 0;
}

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

.about img {
  height: 40px;
  margin-bottom: 20px;
}

.links h3, .download h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.links ul {
  padding: 0;
  list-style: none;
}

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

.links ul li a {
  color: #aaa;
}

.links ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.download .app-buttons {
  flex-direction: column;
  align-items: flex-start;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Download Buttons
========================== */
.footer-content .download .app-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.footer-content .download .btn-google,
.footer-content .download .btn-apple {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-size: 1.4rem;
}

/* Google Play Button */
.footer-content .download .btn-google::before {
  content: '\f3ab';  /* Google Play icon */
  font-family: 'Font Awesome 5 Brands';
  font-size: 24px;
  margin-right: 12px;
  color: white;
}

/* Apple Store Button */
.footer-content .download .btn-apple::before {
  content: '\f179';  /* Apple icon */
  font-family: 'Font Awesome 5 Brands';
  font-size: 24px;
  margin-right: 12px;
  color: white;
}

/* Hover effects */
.footer-content .download .btn-google:hover,
.footer-content .download .btn-apple:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Match hero section button styles */
/* Match hero section button styles - Updated from orange */
.footer-content .download .btn-google,
.hero .google-play {
    background: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
}


.footer-content .download .btn-apple,
.hero .apple-store {
  background: linear-gradient(135deg, #4B086D 0%, #6D3B97 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content .download .app-buttons {
    align-items: center;
  }
  
  .footer-content .download .btn-google,
  .footer-content .download .btn-apple {
    width: 200px;
  }
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Media Queries
========================== */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .hero-image img {
    max-height: 80vh;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }
  
  .plan {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .plan.featured {
    transform: scale(1);
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 40px;
  }
  
  .step:not(:last-child):after {
    display: none;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;  /* Stack on mobile */
    max-width: 600px;  /* Limit width on mobile */
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-image {
    display: none;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter button {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Section Download Buttons
   ========================================================================== */
.hero .app-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
}

.hero .app-buttons a {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  width: 12.2rem;
  height: 4rem;
}

/* Google Play Button */
.hero .app-buttons .google-play {
  background: #4B086D;
  background: linear-gradient(0deg, #4B086D 0%, #6D3B97 50%, #4B086D 100%);
  filter: drop-shadow(0px 5px 5px rgba(75, 8, 109, 0.4));
  -webkit-filter: drop-shadow(0px 5px 5px rgba(75, 8, 109, 0.4));
  -moz-filter: drop-shadow(0px 5px 5px rgba(75, 8, 109, 0.4));
}

/* Apple Store Button */
.hero .app-buttons .apple-store {
  background: #1B0324;
  background: linear-gradient(0deg, #1B0324 0%, #4B086D 50%, #1B0324 100%);
  filter: drop-shadow(0px 5px 5px rgba(27, 3, 36, 0.4));
  -webkit-filter: drop-shadow(0px 5px 5px rgba(27, 3, 36, 0.4));
  -moz-filter: drop-shadow(0px 5px 5px rgba(27, 3, 36, 0.4));
}

.hero .app-buttons a i {
  font-size: 1.7rem;
  color: white;
}

.hero .app-buttons a .button-content {
  margin-left: 0.65rem;
  letter-spacing: 0.05rem;
}

.hero .app-buttons a .button-content h6 {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
}

.hero .app-buttons a .button-content span {
  display: block;
  font-size: 1rem;
  color: white;
  margin-top: 0.1rem;
  letter-spacing: initial;
  font-weight: 600;
}

/* Button hover effects */
.hero .app-buttons a {
  background-size: 200% 200%;
  background-position: bottom;
  transition: all .25s ease;
}

.hero .app-buttons a:hover {
  background-position: top;
  transform: translateY(-3px);
}

/* Common styles for sections
========================== */
section {
  position: relative;
  overflow: hidden;
}

/* Dark sections common styles */
.app-benefits, .testimonials, .pricing, .blog {
  position: relative;
}

/* Add subtle animated gradient overlay to dark sections */
.app-benefits::after,
.testimonials::after,
.pricing::after,
.blog::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(109, 59, 151, 0.1), transparent);
  z-index: 1;
  animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Ensure content stays above overlays */
section > * {
  position: relative;
  z-index: 2;
}

/* Center CTA buttons */
.cta-buttons {
  display: flex;
  justify-content: center;  /* Center horizontally */
  gap: 20px;  /* Space between buttons */
  margin-top: 60px;  /* Space from boxes */
  width: 100%;
  text-align: center;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  min-width: 160px;  /* Ensure consistent button width */
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 80%;  /* Wider buttons on mobile */
  }
}

/* Privacy Policy Page
========================== */
.privacy-policy {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #1B0324 0%, #4B086D 100%);
  color: white;
  min-height: 100vh;
}

.privacy-policy .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy h1 {
  color: white !important;
  font-size: 3.6rem;
  margin-bottom: 10px;
  text-align: center;
}

.privacy-policy .last-updated {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 40px;
  text-align: center;
}

.policy-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-policy h2 {
  color: white !important;
  font-size: 2.4rem;
  margin: 40px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.privacy-policy h2:first-child {
  margin-top: 0;
}

.privacy-policy h3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.privacy-policy p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9) !important;
}

.privacy-policy ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.privacy-policy ul li {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 130px 0 60px;
  }
  
  .privacy-policy h1 {
    font-size: 2.8rem;
  }
  
  .privacy-policy h2 {
    font-size: 2rem;
  }
  
  .privacy-policy h3 {
    font-size: 1.6rem;
  }
  
  .policy-content {
    padding: 25px;
  }
}

/* Contact Page
========================== */
.contact-section {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #1B0324 0%, #4B086D 100%);
  color: white;
  min-height: 100vh;
}

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

.contact-section h1 {
  color: white !important;
  font-size: 3.6rem;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section .subtitle {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: center;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
  flex: 1;
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h3 {
  font-size: 1.8rem;
  color: white !important;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8) !important;
}

.social-links {
  display: flex;
  margin-top: 40px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  color: white !important;
  font-size: 1.6rem;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1.5;
  padding: 50px;
}

.contact-form h2 {
  color: white !important;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.submit-btn {
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.6rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(255, 75, 43, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4);
}

#successMessage {
  text-align: center;
  padding: 40px 20px;
}

#successMessage i {
  font-size: 6rem;
  color: #4CAF50;
  margin-bottom: 20px;
}

#successMessage h3 {
  font-size: 2.4rem;
  color: white !important;
  margin-bottom: 10px;
}

#successMessage p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info, 
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 130px 0 60px;
  }
  
  .contact-section h1 {
    font-size: 2.8rem;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px;
  }
}

/* Add this to your CSS to help with anti-spam measures */
.obfuscated {
  unicode-bidi: bidi-override;
  direction: rtl;
  text-align: left;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
} 