@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar.fixed-top {
  opacity: 0.8;
}
.navbar .logo {
  height: 50px;
  width: auto;
}
.navbar .nav-link {
  color: #333333;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.navbar .nav-link:hover {
  color: #FF6B35;
}
.navbar .nav-link.active {
  color: #FF6B35;
}
.navbar .nav-link.btn-login {
  color: white !important;
  background: #FF6B35;
  border: 2px solid #FF6B35;
  border-radius: 8px;
}
.navbar .nav-link.btn-login:hover, .navbar .nav-link.btn-login:focus, .navbar .nav-link.btn-login:active {
  background: #e55f2d;
  border-color: #e55f2d;
  color: white !important;
}
.navbar .nav-link.btn-signup {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border-radius: 8px;
}
.navbar .nav-link.btn-signup:hover {
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer {
  background: #2C3E50;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer .footer-links li a:hover {
  color: #F7931E;
  padding-left: 5px;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer .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;
  color: white;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  transform: translateY(-3px);
}
.footer .social-links a i {
  font-size: 1.2rem;
}
.footer .footer-link-inline {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 1rem;
  transition: all 0.3s ease;
}
.footer .footer-link-inline:hover {
  color: #F7931E;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.form-label {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.form-control.textarea-control {
  min-height: 150px;
  resize: vertical;
}

.input-group-text {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-right: none;
  border-radius: 10px 0 0 10px;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 45%;
  height: 1px;
  background: #e0e0e0;
}
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 45%;
  height: 1px;
  background: #e0e0e0;
}
.divider span {
  background: white;
  padding: 0 1rem;
  color: #666666;
}

.signup-link {
  text-align: center;
  margin-top: 2rem;
  color: #666666;
}
.signup-link a {
  color: #FF6B35;
  font-weight: 600;
  text-decoration: none;
}
.signup-link a:hover {
  text-decoration: underline;
}

.back-home {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
}
.back-home a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.back-home a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-3px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  overflow: hidden;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop") center/cover;
  opacity: 0.15;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content {
  color: white;
  padding: 2rem 0;
}
.hero-section .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}
.hero-section .hero-title .brand-highlight {
  color: #FFE082;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero-section .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}
.hero-section .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}
.hero-section .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hero-section .hero-stats .stat-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}
.hero-section .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}
.hero-section .hero-buttons .btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-section .hero-buttons .btn i {
  margin-right: 0.5rem;
}
.hero-section .hero-buttons .btn.btn-primary {
  background: white;
  color: #FF6B35;
  border: none;
}
.hero-section .hero-buttons .btn.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.hero-section .hero-buttons .btn.btn-outline-primary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.hero-section .hero-buttons .btn.btn-outline-primary:hover {
  background: white;
  color: #FF6B35;
}
.hero-section .hero-image {
  animation: fadeInRight 1s ease;
}
.hero-section .hero-image .floating-card {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero-section .hero-image .floating-card img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-section .scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-section .scroll-down .scroll-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease;
}
.hero-section .scroll-down .scroll-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}
.hero-section .scroll-down .scroll-icon i {
  font-size: 1.5rem;
  color: white;
}
.hero-section .scroll-down span {
  display: block;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-section {
  padding: 80px 0;
  background: #ECF0F1;
}
.features-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1rem;
}
.features-section .section-header .section-subtitle {
  font-size: 1.1rem;
  color: #666666;
}
.features-section .feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.features-section .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.features-section .feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  transform: scale(1.1);
}
.features-section .feature-card:hover .feature-icon i {
  color: white;
}
.features-section .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.features-section .feature-card .feature-icon i {
  font-size: 2rem;
  color: #FF6B35;
  transition: all 0.3s ease;
}
.features-section .feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2C3E50;
}
.features-section .feature-card p {
  color: #666666;
  margin: 0;
}

.how-it-works-section {
  padding: 80px 0;
  background: white;
}
.how-it-works-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1rem;
}
.how-it-works-section .section-header .section-subtitle {
  font-size: 1.1rem;
  color: #666666;
}
.how-it-works-section .step-card {
  position: relative;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.how-it-works-section .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}
.how-it-works-section .step-card .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.how-it-works-section .step-card .step-icon {
  font-size: 3rem;
  color: #FF6B35;
  margin: 1.5rem 0;
}
.how-it-works-section .step-card .step-icon i {
  display: inline-block;
  transition: all 0.3s ease;
}
.how-it-works-section .step-card:hover .step-icon i {
  transform: scale(1.2) rotate(5deg);
}
.how-it-works-section .step-card h3 {
  font-size: 1.4rem;
  color: #2C3E50;
  margin-bottom: 1rem;
}
.how-it-works-section .step-card p {
  color: #666666;
  margin: 0;
}

.mobile-app-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.mobile-app-section .app-content .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mobile-app-section .app-content .app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.mobile-app-section .app-content .app-features li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
}
.mobile-app-section .app-content .app-features li i {
  color: #FFE082;
  margin-right: 1rem;
  font-size: 1.3rem;
}
.mobile-app-section .app-content .app-download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.mobile-app-section .app-content .app-download-buttons .btn-app-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
}
.mobile-app-section .app-content .app-download-buttons .btn-app-download:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.mobile-app-section .app-content .app-download-buttons .btn-app-download i {
  font-size: 2.5rem;
}
.mobile-app-section .app-content .app-download-buttons .btn-app-download div {
  text-align: left;
}
.mobile-app-section .app-content .app-download-buttons .btn-app-download div small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
}
.mobile-app-section .app-content .app-download-buttons .btn-app-download div strong {
  display: block;
  font-size: 1.1rem;
}
.mobile-app-section .app-mockup {
  max-width: 400px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.cta-section {
  padding: 60px 0;
  background: #ECF0F1;
}
.cta-section .cta-box {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 3rem;
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}
.cta-section .cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cta-section .cta-box p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
}
.cta-section .cta-box .btn {
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}
.cta-section .cta-box .btn i {
  margin-left: 0.5rem;
}
.cta-section .cta-box .btn:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.login-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop") center/cover;
  opacity: 0.1;
}

.login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.login-header {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 2rem;
  text-align: center;
  color: white;
}
.login-header img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.login-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.login-header p {
  opacity: 0.95;
  margin: 0;
}

.login-body {
  padding: 3rem;
}

.btn-login {
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}
.btn-login:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.signup-section {
  min-height: 100vh;
  padding: 5rem 0;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  position: relative;
  overflow: hidden;
}
.signup-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&h=1080&fit=crop") center/cover;
  opacity: 0.1;
}

.signup-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.signup-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  text-align: center;
  color: white;
}
.signup-header img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.signup-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.signup-header p {
  opacity: 0.95;
  margin: 0;
}

.signup-body {
  padding: 3rem;
}

.btn-signup {
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}
.btn-signup:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.benefits-list {
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}
.benefits-list h5 {
  color: #2C3E50;
  font-weight: 700;
  margin-bottom: 1rem;
}
.benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  padding: 0.5rem 0;
  color: #666666;
}
.benefits-list li i {
  color: #27AE60;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.login-link {
  text-align: center;
  margin-top: 2rem;
  color: #666666;
}
.login-link a {
  color: #FF6B35;
  font-weight: 600;
  text-decoration: none;
}
.login-link a:hover {
  text-decoration: underline;
}

.forgot-password-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.forgot-password-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop") center/cover;
  opacity: 0.1;
}

.forgot-password-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.forgot-password-header {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  padding: 2rem;
  text-align: center;
  color: white;
}
.forgot-password-header img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.forgot-password-header .icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.forgot-password-header .icon-wrapper i {
  font-size: 2.5rem;
  color: white;
}
.forgot-password-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.forgot-password-header p {
  opacity: 0.95;
  margin: 0;
}

.forgot-password-body {
  padding: 3rem;
}

.info-box {
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #FF6B35;
  margin-bottom: 2rem;
}
.info-box i {
  color: #FF6B35;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}
.info-box p {
  margin: 0;
  color: #666666;
  line-height: 1.6;
}

.btn-reset {
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}
.btn-reset:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.back-to-login {
  text-align: center;
  margin-top: 2rem;
  color: #666666;
}
.back-to-login a {
  color: #FF6B35;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.back-to-login a:hover {
  text-decoration: underline;
}

.success-message {
  background: linear-gradient(145deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1rem;
  display: none;
}
.success-message i {
  color: #28a745;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.success-message h5 {
  color: #155724;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.success-message p {
  color: #155724;
  margin: 0;
}

.contact-section {
  min-height: 100vh;
  padding: 5rem 0;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1534536281715-e28d76689b4d?w=1920&h=1080&fit=crop") center/cover;
  opacity: 0.1;
}

.contact-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.contact-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}
.contact-header img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-header p {
  opacity: 0.95;
  font-size: 1.1rem;
  margin: 0;
}

.contact-body {
  padding: 3rem;
}

.contact-info-box {
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
}
.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.contact-info-icon i {
  color: white;
  font-size: 1.5rem;
}

.contact-info-content h5 {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}
.contact-info-content p {
  color: #666666;
  margin: 0;
  line-height: 1.6;
}
.contact-info-content a {
  color: #FF6B35;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-info-content a:hover {
  color: #F7931E;
}

.btn-submit {
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-links-contact a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.social-links-contact a i {
  font-size: 1.2rem;
}

.office-hours {
  background: rgba(255, 107, 53, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.office-hours h6 {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}
.office-hours p {
  margin: 0;
  color: #666666;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .contact-header h2 {
    font-size: 2rem;
  }
  .contact-body {
    padding: 2rem;
  }
  .contact-info-box {
    margin-bottom: 2rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media (max-width: 991px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-section .hero-stats {
    gap: 1rem;
  }
  .hero-section .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }
  .hero-section .hero-image {
    margin-top: 3rem;
  }
  .section-header .section-title {
    font-size: 2rem;
  }
  .mobile-app-section .app-mockup {
    margin-top: 2rem;
  }
  .cta-section .cta-box {
    text-align: center;
  }
  .cta-section .cta-box h2 {
    font-size: 1.5rem;
  }
  .cta-section .cta-box .col-lg-4 {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 100vh;
  }
  .hero-section .hero-title {
    font-size: 2rem;
  }
  .hero-section .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-section .hero-buttons {
    flex-direction: column;
  }
  .hero-section .hero-buttons .btn {
    width: 100%;
  }
  .navbar .logo {
    height: 40px;
  }
  .features-section,
  .how-it-works-section,
  .mobile-app-section {
    padding: 60px 0;
  }
}

/*# sourceMappingURL=style.css.map */
