/* 
  TaxiTech - Taxi Booking Website Landing Page CSS
  Author: Your Name
  Version: 1.0
*/

/* Reset & Base Styles */
:root {
  --primary-color: #FF5722;
  --secondary-color: #2196F3;
  --dark-color: #212121;
  --light-color: #f5f5f5;
  --gray-color: #757575;
  --success-color: #4CAF50;
  --warning-color: #FFC107;
  --white-color: #ffffff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --section-padding: 80px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-color);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
  background-color: #e64a19;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-cta {
  background-color: var(--success-color);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-cta:hover {
  background-color: #3d8b40;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 1px;
}

.nav ul {
  display: flex;
}

.nav ul li {
  margin-left: 30px;
}

.nav ul li a {
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

.nav ul li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav ul li a:hover:before {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 30px;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%), url('../images/taxi-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--gray-color);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.hero-video {
  flex: 1;
}

/* Enhanced YouTube Video Styles */
.video-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: var(--white-color);
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 315px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  display: block;
  min-height: 315px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* Video Fallback Styles */
.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: var(--border-radius);
}

.fallback-content {
  text-align: center;
  color: var(--white-color);
  padding: 20px;
}

.fallback-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.fallback-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.fallback-content p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.fallback-content .btn {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white-color);
  color: var(--white-color);
  backdrop-filter: blur(5px);
}

.fallback-content .btn:hover {
  background-color: var(--white-color);
  color: #ff0000;
}

/* Remove old play button styles since we're using direct YouTube embeds */
.play-button {
  display: none;
}

/* Remove conflicting loading animation for hero video */
.hero .video-container::before {
  display: none;
}

/* Loading state for videos - only for gallery videos */
.video-gallery .video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

.video-container iframe:not([src=""]) + ::before {
  display: none;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--light-color);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.video-thumbnail iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background-color: #000;
  min-height: 200px;
  position: relative;
}

.video-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: var(--gray-color);
}

/* Problem & Solution Section */
.problem-solution {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.problem-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-card .icon {
  font-size: 2.5rem;
  color: var(--warning-color);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.solution-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.solution-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.solution-visual {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon-grid {
  position: absolute;
  width: 100%;
  height: 100%;
}

.solution-icon-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff9800);
  border-radius: 50%;
  color: var(--white-color);
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-icon-item:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.solution-icon-item i {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.solution-icon-item span {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

/* Position each icon around the circle */
.solution-icon-item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.solution-icon-item:nth-child(2) {
  top: 25%;
  right: 0;
  animation-delay: 0.5s;
}

.solution-icon-item:nth-child(3) {
  bottom: 25%;
  right: 0;
  animation-delay: 1s;
}

.solution-icon-item:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.solution-icon-item:nth-child(5) {
  bottom: 25%;
  left: 0;
  animation-delay: 2s;
}

.solution-icon-item:nth-child(6) {
  top: 25%;
  left: 0;
  animation-delay: 2.5s;
}

.solution-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color), #1976d2);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

.solution-logo i {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.solution-center h4 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
  }
  50% {
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.5);
  }
}

.solution-text {
  flex: 1;
}

.solution-text h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.solution-features {
  margin: 25px 0;
}

.solution-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.solution-features i {
  color: var(--success-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: var(--section-padding);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.feature-card:hover:before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .icon {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card .benefit {
  margin-top: 15px;
  font-weight: 600;
}

.feature-card .benefit span {
  color: var(--secondary-color);
}

.feature-video {
  margin-top: 60px;
  text-align: center;
}

.feature-video h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--dark-color);
}

/* Video Gallery Section */
.video-gallery {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.video-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-color);
  line-height: 1.4;
}

.video-info p {
  color: var(--gray-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.channel-subscribe {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  text-align: center;
  margin-top: 40px;
}

.subscribe-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.subscribe-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.subscribe-text p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.subscribe-button .btn {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.subscribe-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Demo Websites Section */
.demo-websites {
  padding: var(--section-padding);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.demo-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.demo-preview {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.demo-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.demo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: var(--transition);
}

.demo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
}

.demo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 87, 34, 0.9), rgba(33, 150, 243, 0.9));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.demo-preview:hover .demo-overlay {
  opacity: 1;
}

.demo-preview:hover img {
  transform: scale(1.1);
}

.demo-overlay .btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  background-color: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-overlay .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

.demo-info {
  padding: 20px;
}

.demo-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.demo-info p {
  color: var(--gray-color);
  line-height: 1.5;
}

/* Why Choose Us Section */
.why-us {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.usp-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.usp-card .icon {
  font-size: 2rem;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: rgba(33, 150, 243, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.usp-card:hover .icon {
  background-color: var(--secondary-color);
  color: var(--white-color);
  transform: rotateY(360deg);
}

.usp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Social Proof Section */
.social-proof {
  padding: var(--section-padding);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote {
  font-size: 2.5rem;
  color: #e1e1e1;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.client {
  display: flex;
  align-items: center;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.client-info h4 {
  font-size: 1.1rem;
  color: var(--dark-color);
}

.client-info p {
  color: var(--gray-color);
  font-size: 0.875rem;
}

.rating {
  margin-top: 5px;
  color: var(--warning-color);
  font-size: 0.875rem;
}

.clients-logo {
  text-align: center;
  margin-top: 50px;
}

.clients-logo h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logos img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.logos img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-5px);
}

/* Process Section */
.process {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto 60px;
}

.process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.process-step:not(:last-child):after {
  content: '';
  position: absolute;
  width: 3px;
  height: calc(100% - 50px);
  background-color: var(--primary-color);
  left: 25px;
  top: 50px;
  opacity: 0.3;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.cta-container {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9800 100%);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 87, 34, 0.3);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--white-color);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: var(--white-color);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
  max-width: 600px;
}

.cta-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-features span i {
  color: #4CAF50;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-buttons .btn {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: center;
}

.cta-buttons .btn-primary {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--white-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
  transform: translateY(-3px);
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: -60px;
  right: -60px;
  animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: -40px;
  left: -40px;
  animation: pulse 4s ease-in-out infinite 1s;
}

.circle-3 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 5px solid transparent;
  transition: var(--transition);
}

.faq-question:hover, .faq-question.active {
  border-left-color: var(--primary-color);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.toggle-icon {
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  padding: 0 25px 20px;
  max-height: 300px;
}

/* Urgency Section */
.urgency {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9800 100%);
  color: var(--white-color);
}

.urgency-content {
  text-align: center;
}

.urgency-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.urgency-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.time-unit {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  min-width: 100px;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.time-unit .number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.time-unit .label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item .icon {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(33, 150, 243, 0.1);
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.contact-form {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
  width: calc(50% - 10px);
  display: inline-block;
}

.form-group.full-width {
  width: 100%;
}

.form-group:nth-child(odd) {
  margin-right: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

.form-group textarea {
  resize: vertical;
}

/* Form Message Styles */
.form-message {
  padding: 15px;
  border-radius: var(--border-radius);
  margin: 20px 0;
  font-weight: 500;
  text-align: center;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message a {
  color: inherit;
  text-decoration: underline;
  font-weight: bold;
}

.form-message a:hover {
  color: var(--primary-color);
}

/* Submit Button Loading State */
#submit-btn {
  position: relative;
  min-width: 250px;
}

#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader i {
  margin-right: 8px;
}

/* Form Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.footer-logo p {
  max-width: 300px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.link-group h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.link-group h3:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -8px;
}

.link-group ul li {
  margin-bottom: 12px;
}

.link-group ul li a {
  opacity: 0.7;
  transition: var(--transition);
}

.link-group ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content,
  .solution-content {
    flex-direction: column;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .subscribe-content {
    text-align: center;
  }

  .solution-image {
    min-height: 300px;
    padding: 30px;
  }

  .solution-visual {
    max-width: 280px;
    height: 280px;
  }

  .solution-icon-item {
    width: 60px;
    height: 60px;
  }

  .solution-icon-item i {
    font-size: 1.2rem;
  }

  .solution-icon-item span {
    font-size: 0.6rem;
  }

  .solution-center {
    width: 100px;
    height: 100px;
  }

  .solution-logo i {
    font-size: 2rem;
  }

  .solution-center h4 {
    font-size: 0.8rem;
  }

  /* Hero video responsive */
  .hero .video-container {
    min-height: 250px;
  }

  .hero .video-container iframe {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    clip-path: circle(0% at top right);
    transition: clip-path 0.5s ease;
  }
  
  .nav.active {
    clip-path: circle(150% at top right);
  }
  
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .nav ul li {
    margin-left: 0;
  }
  
  .hamburger {
    display: flex;
    z-index: 1000;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .timer {
    flex-wrap: wrap;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .video-thumbnail {
    height: 250px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-content {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-text {
    margin-bottom: 20px;
  }

  /* Enhanced CTA Mobile Styles */
  .cta-container {
    padding: 40px 20px;
    margin: 0 10px;
    border-radius: 15px;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .cta-text h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .cta-text p {
    font-size: 1rem;
  }

  .cta-features {
    gap: 15px;
    margin-bottom: 20px;
  }

  .cta-features span {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    min-width: auto;
    width: 100%;
    padding: 15px 25px;
  }

  .circle-1, .circle-2, .circle-3 {
    opacity: 0.5;
  }

  /* Hero video mobile */
  .hero .video-container {
    min-height: 200px;
  }

  .hero .video-container iframe {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .form-group {
    width: 100%;
  }
  
  .form-group:nth-child(odd) {
    margin-right: 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--white-color);
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: bounce 2s infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  color: var(--white-color);
}

.floating-btn .btn-text {
  position: absolute;
  right: 70px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover .btn-text {
  opacity: 1;
  transform: translateX(0);
}

.call-btn {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  animation-delay: 0s;
}

.call-btn:hover {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation-delay: 0.5s;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Pulse animation for extra attention */
.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 12px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .floating-btn .btn-text {
    right: 65px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .floating-btn .btn-text {
    display: none; /* Hide text on very small screens */
  }
}

/* Website Mockup Styles */
.website-mockup {
  width: 100%;
  height: 200px;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.mockup-browser {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.browser-bar {
  background: #e9ecef;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid #dee2e6;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c757d;
}

.browser-dots span:nth-child(1) {
  background: #ff5f56;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background: #27ca3f;
}

.browser-url {
  background: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  color: #495057;
  font-weight: 500;
  flex: 1;
  text-align: center;
  margin: 0 20px;
  border: 1px solid #ced4da;
}

.mockup-content {
  flex: 1;
  padding: 8px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e9ecef;
}

.logo-area {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu span {
  width: 20px;
  height: 3px;
  background: #dee2e6;
  border-radius: 2px;
}

.mockup-hero {
  margin-bottom: 8px;
  padding: 8px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 4px;
  border-left: 3px solid var(--primary-color);
}

.hero-text {
  margin-bottom: 6px;
}

.text-line {
  height: 4px;
  background: #dee2e6;
  border-radius: 2px;
  margin-bottom: 3px;
}

.text-line.long {
  width: 80%;
}

.text-line.medium {
  width: 60%;
}

.hero-button {
  width: 40px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 3px;
}

.mockup-features {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.feature-box {
  flex: 1;
  height: 25px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 3px;
  position: relative;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.feature-box::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 16px;
  right: 4px;
  height: 2px;
  background: #dee2e6;
  border-radius: 1px;
}

/* Theme variations */
.travel-theme {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.travel-theme .mockup-hero {
  background: rgba(33, 150, 243, 0.1);
  border-left-color: var(--secondary-color);
}

.travel-theme .hero-button {
  background: var(--secondary-color);
}

.travel-theme .feature-box::before {
  background: #9c27b0;
}

.cab-theme {
  background: linear-gradient(135deg, #f1f8e9 0%, #fff3e0 100%);
}

.cab-theme .mockup-hero {
  background: rgba(76, 175, 80, 0.1);
  border-left-color: var(--success-color);
}

.cab-theme .hero-button {
  background: var(--success-color);
}

.cab-theme .feature-box::before {
  background: #ff9800;
}

/* Hover effects for mockups */
.demo-preview:hover .website-mockup {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.demo-preview:hover .mockup-content {
  animation: mockup-pulse 2s ease-in-out;
}

@keyframes mockup-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
} 