/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --primary: 221 83% 53%;
  --primary-light: 221 83% 65%;
  --primary-dark: 221 83% 45%;
  --primary-foreground: 210 40% 98%;
  --secondary: 217 33% 17%;
  --secondary-foreground: 210 40% 98%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 215 100% 96%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --highlight: 25 95% 53%;
  --radius: 0.5rem;
}

/* Hide original content */
.hidden-content {
  display: none;
}

/* Show new content */
.new-content {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: hsl(var(--background));
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #1a2c4e;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: hsl(var(--primary-light));
}

/* Buttons */
.btn-primary, .btn-outline, .btn-get-started, .btn-contact {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
  margin-left: 1rem;
}

.btn-primary:hover {
  background-color: hsl(var(--primary-light));
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-get-started {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--primary-light)));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 12px rgba(var(--primary), 0.2);
}

.btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(var(--primary), 0.3);
}

.btn-contact {
  background-color: transparent;
  border: 2px solid hsla(var(--primary), 0.3);
  color: hsl(var(--secondary));
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-contact:hover {
  border-color: hsla(var(--primary), 0.8);
  background-color: hsla(var(--primary), 0.05);
}

.button-glow-wrapper {
  position: relative;
}

.button-glow-wrapper::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, hsla(var(--primary), 0.4) 0%, hsla(var(--primary), 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: var(--radius);
}

.button-glow-wrapper:hover::after {
  opacity: 1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-square {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 4px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text-image {
  height: 24px;
  object-fit: contain;
}

.logo-text {
  font-weight: 600;
  font-size: 1.2rem;
  color: hsl(var(--secondary));
}

.nav-links {
  display: none;
}

.nav-link {
  margin-left: 1.5rem;
  font-weight: 500;
  color: hsl(var(--secondary));
}

.nav-link:hover {
  color: hsl(var(--primary));
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--secondary));
}

.mobile-menu {
  display: none;
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--secondary));
}

/* Hero Section */
.hero-section {
  padding: 7rem 0 3rem;
  position: relative;
  background-color: hsla(var(--background));
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: #1a2c4e;
  line-height: 1.3;
}

.highlight {
  color: #FF8000;
  font-weight: 800;
}

.hero-text p {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.hero-image-main {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  background-color: hsl(var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(0);
  overflow: hidden;
}

.hero-landscape-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.accent-shape {
  position: absolute;
  border-radius: var(--radius);
}

.accent-shape-1 {
  width: 6rem;
  height: 6rem;
  background-color: hsla(var(--primary), 0.1);
  bottom: -1.5rem;
  left: -1.5rem;
}

.accent-shape-2 {
  width: 4rem;
  height: 4rem;
  border: 2px solid hsla(var(--primary), 0.2);
  top: -1rem;
  right: -1rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 24rem;
  background-color: hsl(var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-floor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-accent-1 {
  width: 8rem;
  height: 8rem;
  background-color: hsla(var(--primary), 0.1);
  bottom: -1.5rem;
  right: -1.5rem;
}

.about-accent-2 {
  width: 5rem;
  height: 5rem;
  border: 2px solid hsla(var(--primary), 0.3);
  top: -1rem;
  left: -1rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 0.5rem;
  color: #1a2c4e;
}

.about-section .section-divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(to right, #2d69f0, #70a1ff);
  margin-bottom: 1.75rem;
  border-radius: 2px;
}

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

.stat-card {
  background-color: hsl(var(--accent));
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--secondary));
}

.about-text h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.problem-list {
  list-style-type: none;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}

.problem-list li {
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 0.7rem;
}

.problem-list li::before {
  content: "•";
  color: hsl(var(--highlight));
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

/* Why Us Section */
.why-us-section {
  padding: 5rem 0;
  background-color: hsla(var(--accent));
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-header {
  display: flex;
  background-color: hsl(var(--primary));
  color: white;
  font-weight: 600;
}

.comparison-column {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid hsla(var(--border));
  background-color: white;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.comparison-row:nth-child(odd) {
  background-color: hsla(var(--muted), 0.3);
}

.platform-features {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.platform-features h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: hsl(var(--secondary));
}

.features-list {
  list-style-type: none;
  display: inline-block;
  text-align: left;
  margin-bottom: 2rem;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.features-list li::before {
  content: "→";
  color: hsl(var(--primary));
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.reason-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.reason-content {
  display: flex;
  align-items: flex-start;
}

.reason-icon {
  margin-right: 1rem;
  padding: 0.5rem;
  background-color: hsla(var(--primary), 0.1);
  border-radius: 50%;
  color: hsl(var(--primary));
}

.reason-content h3 {
  margin-bottom: 0.5rem;
}

.cta-box {
  background-color: hsl(var(--primary));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 4rem;
}

.cta-box h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.cta-box .btn-outline {
  background-color: white;
  color: hsl(var(--primary));
  border: none;
}

.cta-box .btn-outline:hover {
  background-color: hsla(var(--primary-foreground), 0.9);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: white;
}

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

.team-card {
  background-color: hsl(var(--accent));
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

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

.team-avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.team-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  color: hsl(var(--primary));
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.social-link-wrapper {
  display: flex;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  padding: 0.5rem;
  background-color: hsla(var(--primary), 0.1);
  border-radius: 50%;
  color: hsl(var(--primary));
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: hsla(var(--primary), 0.2);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: hsl(var(--primary), 0.05);
}

.success-message {
  display: none;
  padding: 1rem;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  text-align: center;
}

.error-message {
  display: none;
  padding: 1rem;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  text-align: center;
}

.required {
  color: #dc3545;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
}

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

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: hsl(var(--secondary));
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsla(var(--border));
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsla(var(--primary), 0.2);
}

.btn-submit {
  width: 100%;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-icon {
  margin-right: 1rem;
  padding: 0.5rem;
  background-color: hsla(var(--primary), 0.1);
  border-radius: 50%;
  color: hsl(var(--primary));
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

.business-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(var(--border));
}

.business-hours h4 {
  margin-bottom: 0.25rem;
}

.business-hours p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer */
.footer {
  background-color: #1a2b43;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 0 0 60%;
}

.footer-links {
  flex: 0 0 30%;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo .logo-square {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 4px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.footer-logo-text {
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  margin-top: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #FF8000;
  margin-top: 0.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

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

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

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

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

@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
}

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

.animate-fadeIn {
  animation: fadeIn 0.8s ease-in-out;
}

.animate-fadeSlideIn {
  animation: fadeSlideIn 0.8s ease-in-out;
}

.animate-fadeSlideIn-delayed {
  animation: fadeSlideIn 0.8s ease-in-out 0.2s both;
  opacity: 0;
}

.animate-fadeSlideIn-more-delayed {
  animation: fadeSlideIn 0.8s ease-in-out 0.4s both;
  opacity: 0;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

.animate-bounce-slow {
  animation: bounce-slow 6s ease-in-out infinite;
}

/* Media Queries */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .menu-button {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
  }
  
  .hero-text {
    width: 50%;
    text-align: left;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .hero-image {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  
  .hero-image-main {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  
  .about-content {
    flex-direction: row;
  }
  
  .about-image {
    width: 50%;
  }
  
  .about-text {
    width: 50%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-legal {
    margin-top: 0;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* Layout adjustments */
  .container {
    padding: 0 1.25rem;
  }
  
  /* Hero section adjustments */
  .hero-content {
    flex-direction: column;
    padding: 5rem 0 3rem;
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .hero-image-main {
    width: 90%;
    max-width: 350px;
  }
  
  /* About section adjustments */
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 2rem;
    width: 100%;
  }
  
  .about-text {
    width: 100%;
    text-align: left;
  }
  
  /* Dashboard gallery adjustments */
  .dashboard-gallery {
    overflow-x: hidden;
  }
  
  .gallery-image {
    max-width: 100%;
  }
  
  /* Contact section adjustments */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Footer adjustments */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet-specific adjustments */
  .hero-content {
    padding: 6rem 0 4rem;
  }
  
  .hero-text {
    padding-right: 1rem;
    width: 55%;
  }
  
  .hero-image {
    width: 45%;
  }
  
  .about-image {
    width: 45%;
  }
  
  .about-text {
    width: 55%;
    padding-left: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
}

/* How it Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background-color: white;
}

.steps-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  flex: 1;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #edf2ff;
  color: #2d69f0;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: #1a2c4e;
}

.step-content p {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 0;
}

.step-connector {
  height: 40px;
  border-left: 2px dashed hsl(var(--primary-light));
}

@media (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
  }
  
  .step-card {
    flex: 0 0 calc(45% - 1rem);
    margin-bottom: 0;
  }
  
  .step-connector {
    display: none;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: hsla(var(--muted), 0.3);
}

/* Dashboard Section - Professional Gallery */
.dashboard-section {
  padding: 5rem 0;
  background-color: #f8fafc;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.dashboard-section .container {
  position: relative;
  z-index: 2;
}

.dashboard-gallery {
  position: relative;
  margin-top: 3rem;
  width: 100%;
  overflow: visible;
  border-radius: 10px;
}

.gallery-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.gallery-item {
  width: 100%;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.gallery-image-wrapper {
  overflow: visible;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Custom style for dashboard image */
.gallery-image {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto;
}

.gallery-item:hover .gallery-image {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 130, 246, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover-content {
  text-align: center;
  padding: 0 2rem;
  color: white;
}

.gallery-hover-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-hover-content p {
  font-size: 1rem;
  opacity: 0.95;
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 80%;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 1.5rem;
  }
  
  .gallery-item {
    height: 100%;
  }
  
  .gallery-image-wrapper {
    height: 100%;
  }
  
  .gallery-image {
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-hover-content h4 {
    font-size: 1.75rem;
  }
  
  .gallery-hover-content p {
    font-size: 1.125rem;
  }
}

/* Testimonial Carousel - Enhanced Styling */
.testimonial-carousel {
  width: 100%;
  margin: 3rem 0 4rem;
  position: relative;
}

.carousel-container {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px -12px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  display: block;
  pointer-events: auto;
  animation: fadeSlide 0.7s ease-in-out;
}

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

.testimonial-carousel .testimonial-card {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 2.5rem;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.testimonial-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin: 0 auto 2rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.testimonial-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.quote-icon {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  opacity: 0.8;
}

/* Hide the inline quote marks that appear in the HTML */
.quote-icon svg {
  display: none;
}

.testimonial-content p {
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #252525;
  position: relative;
  padding: 0 1rem;
}

/* Custom quote marks */
.testimonial-content p::before,
.testimonial-content p::after {
  content: '';
  font-size: 0;
  position: absolute;
}

/* Use a decorative element for quotes instead */
.testimonial-content::before,
.testimonial-content::after {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  color: hsl(var(--primary));
  opacity: 0.12;
}

.testimonial-content::before {
  content: '"';
  top: 0;
  left: 0;
}

.testimonial-content::after {
  content: '"';
  bottom: 0;
  right: 15px;
}

.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  position: relative;
}

.author-info h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.author-info p {
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

.carousel-prev,
.carousel-next {
  background-color: white;
  border: 1px solid hsla(var(--primary), 0.3);
  color: hsl(var(--primary));
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: hsl(var(--primary));
  color: white;
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  margin: 0 1.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: hsla(var(--primary), 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: hsl(var(--primary));
  transform: scale(1);
  box-shadow: 0 0 0 2px hsla(var(--primary), 0.2);
}

@media (min-width: 768px) {
  .testimonial-carousel .testimonial-card {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
  }

  .testimonial-image {
    width: 320px;
    height: 280px;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  
  .testimonial-content {
    text-align: left;
    padding: 0 30px 0 0;
  }
  
  .quote-icon {
    margin: 0 0 1.5rem;
    justify-content: flex-start;
  }
  
  .testimonial-author {
    justify-content: flex-start;
  }

  .testimonial-content::before {
    left: -20px;
    top: -20px;
  }
  
  .testimonial-content::after {
    right: 0;
    bottom: -40px;
  }
}

/* Contact Form and File Upload */

.file-upload-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background-color: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
  max-width: fit-content;
}

.file-upload-label:hover {
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
}

.file-name {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.5rem;
}

.form-help-text {
  display: block;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

/* Benefit Items */
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  background-color: white;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item .info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  min-width: 25px;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  border-radius: 50%;
  margin-right: 1rem;
}

.benefit-item p {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 1rem;
}

.early-access {
  margin-top: 2rem;
  text-align: center;
}

.btn-early-access {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Offer Section */
.offer-section {
  padding: 5rem 0;
  background-color: hsl(var(--primary));
  color: white;
}

.offer-section .section-title {
  color: white;
  margin-bottom: 2rem;
}

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

.offer-headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.offer-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.offer-divider {
  width: 80px;
  height: 3px;
  background-color: white;
  margin: 2rem auto;
  opacity: 0.6;
}

.offer-callout {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.offer-subheading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.offer-benefits {
  padding-left: 0;
  list-style: none;
}

.offer-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: white;
}

.offer-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
}

.offer-summary {
  margin-bottom: 2.5rem;
}

.offer-summary p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.scroll-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-claim-access {
  background: white;
  color: hsl(var(--primary));
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-claim-access:hover {
  background: transparent;
  color: white;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .offer-headline {
    font-size: 1.8rem;
  }
  
  .offer-text {
    font-size: 1.1rem;
  }
  
  .offer-callout {
    font-size: 1.4rem;
  }
  
  .offer-subheading {
    font-size: 1.2rem;
  }
  
  .offer-benefits li {
    font-size: 1rem;
  }
  
  .offer-summary p {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .gallery-image {
    max-height: none;
  }
}

@media (max-width: 768px) {
  .gallery-image {
    max-height: none;
    width: auto;
    max-width: 100%;
  }
}

/* Problem section styling */
.problem-section ul,
#problem ul {
  padding-left: 0;
  list-style: none;
}

#problem ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #4a5568;
}

#problem ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
}

#problem ul li strong {
  color: #1a2c4e;
  font-weight: 600;
}

/* Solution section styling */
#solution .offer-headline {
  color: #ffffff;
  margin-bottom: 1.75rem;
  text-align: center;
}

#solution .offer-benefits {
  max-width: 900px;
  margin: 0 auto;
}

#solution .offer-benefits li {
  color: #ffffff;
  line-height: 1.7;
}

#solution .offer-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
}

#solution .offer-benefits li strong {
  color: #ffffff;
  font-weight: 700;
}

/* Result callout styling */
.how-it-works-section .cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background-color: hsla(var(--primary), 0.05);
  border: 1px solid hsla(var(--primary), 0.2);
  border-radius: var(--radius);
  text-align: center;
  max-width: 900px;
  margin: 3rem auto 0;
}

.how-it-works-section .cta-box h3 {
  color: #000000;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Section spacing adjustments */
.about-section,
.problem-section,
.why-us-section,
.offer-section,
.how-it-works-section,
.dashboard-section,
.team-section,
.contact-section {
  padding: 5rem 0;
}

/* Additional styling for About section */
.about-section .section-divider {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #4a5568;
  line-height: 1.7;
}

.about-text p em {
  color: #2d69f0;
  font-weight: 500;
}

/* Improve spacing in problem section */
#problem .section-subtitle {
  margin-bottom: 2rem;
}

/* Enhance dashboard display */
.dashboard-section {
  background-color: #f8fafc;
}

.gallery-image-wrapper {
  margin: 0 auto;
  max-width: 900px;
}

/* Mobile responsiveness refinements */
@media (max-width: 768px) {
  .about-section,
  .problem-section,
  .why-us-section,
  .offer-section,
  .how-it-works-section,
  .dashboard-section,
  .team-section,
  .contact-section {
    padding: 3.5rem 0;
  }
  
  #problem ul li,
  #solution .offer-benefits li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .how-it-works-section .cta-box h3 {
    font-size: 1.1rem;
  }
}

/* Center problem section text */
#problem .section-subtitle {
  text-align: center;
}

#problem ul {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Fix solution section text colors */
#solution {
  color: #ffffff;
}

#solution .section-title {
  color: #ffffff;
}

#solution .offer-headline {
  color: #ffffff;
}

#solution .offer-benefits li {
  color: #ffffff;
}

#solution .offer-benefits li strong {
  color: #ffffff;
  font-weight: 700;
}
