/* Main Styles for Walaway Travel Booking Website */

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

/* CSS Reset and Base Styles */
:root {
  --primary: #00B4D8;
  --primary-dark: #0077B6;
  --primary-light: #90E0EF;
  --secondary: #FF9E00;
  --secondary-dark: #E67700;
  --text-dark: #333333;
  --text-light: #666666;
  --background: #F8F9FA;
  --white: #FFFFFF;
  --success: #28A745;
  --gray-light: #F5F5F5;
  --gray: #DDDDDD;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-center {
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.hero-row.reverse {
  margin-bottom: 0;
}

.hero-row.reverse .hero-content {
  order: 2;
}

.hero-row.reverse .hero-images {
  order: 1;
}

/* Hero Content */
.hero-content {
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge.orange {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Search Form */
.search-form {
  display: flex;
  background: white;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 1rem;
  align-items: center;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 0.5rem;
}

.field-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
}

.field-content label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.field-content span {
  font-size: 0.9rem;
  color: #666;
}

.search-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Image Grids */
.hero-images {
  position: relative;
}

.image-grid-1,
.image-grid-2 {
  display: grid;
  gap: 1rem;
  height: 500px;
}

.image-grid-1 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.image-grid-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 0.8fr;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.image-card.large {
  grid-row: span 2;
}

.image-card.medium {
  grid-row: span 1;
}

.image-card.small {
  grid-row: span 1;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem 1.5rem 1.5rem;
  color: white;
}

.destination-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.verified-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.verified-badge span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #22c55e;
}

.verified-badge small {
  font-size: 0.8rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-row.reverse .hero-content,
  .hero-row.reverse .hero-images {
    order: unset;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.5rem;
  }

  .search-form {
    flex-direction: column;
    gap: 1rem;
  }

  .search-field {
    width: 100%;
    justify-content: flex-start;
  }

  .search-btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-grid-1,
  .image-grid-2 {
    height: 400px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 1rem;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2rem;
  }

  .image-grid-1,
  .image-grid-2 {
    height: 300px;
  }
}


.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  color: var(--primary);
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Chatbot Section */
.chatbot {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.chatbot-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chatbot-image {
  position: relative;
}

.chatbot-phone {
  width: 100%;
  max-width: 350px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: floatPhone 3s ease-in-out infinite alternate;
}

.chatbot-bubble {
  position: absolute;
  background-color: var(--white);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 200px;
  animation: fadeInScale 0.5s ease;
}

.chatbot-bubble.bubble-1 {
  top: 20%;
  right: 0;
  animation-delay: 0.2s;
}

.chatbot-bubble.bubble-2 {
  bottom: 20%;
  left: 0;
  animation-delay: 0.4s;
}

.chatbot-content h2 {
  margin-bottom: 1.5rem;
}

.chatbot-features {
  margin-top: 2rem;
}

.chatbot-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.chatbot-feature-icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* B2B Section */
.b2b {
  background-color: var(--white);
}

.b2b-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.b2b-content {
  order: 2;
}

.b2b-image {
  order: 1;
  position: relative;
}

.b2b-whatsapp {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: floatUp 3s ease-in-out infinite alternate;
}

.b2b-badge {
  position: absolute;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  top: -20px;
  right: 30px;
  animation: pulse 2s infinite;
}

.b2b-steps {
  margin-top: 2rem;
}

.b2b-step {
  display: flex;
  margin-bottom: 1.5rem;
}

.b2b-step-number {
  min-width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  margin-right: 1rem;
}

/* Testimonials Section */
/* Testimonial Grid Styles */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.testimonial-rating {
  color: var(--secondary);
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-name {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.testimonial-role {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Vendor Dashboard Styles */
.vendor-dashboard {
  width: 350px;
  height: 600px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.dashboard-header {
  background: var(--primary-dark);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.dashboard-logo {
  height: 30px;
  margin-right: 10px;
}

.dashboard-content {
  padding: 15px;
}

.dashboard-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.stat-card {
  flex: 1;
  background: var(--gray-light);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.stat-card h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-light);
}

.whatsapp-integration {
  background: #ECE5DD;
  border-radius: 10px;
  overflow: hidden;
}

.whatsapp-header {
  background: #128C7E;
  color: white;
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.whatsapp-header i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.whatsapp-messages {
  padding: 15px;
  height: 300px;
  overflow-y: auto;
}

.whatsapp-message {
  margin-bottom: 10px;
  max-width: 80%;
}

.whatsapp-message p {
  padding: 10px;
  border-radius: 10px;
  margin: 0;
  font-size: 0.9rem;
}

.whatsapp-message.customer {
  margin-right: auto;
}

.whatsapp-message.customer p {
  background: white;
}

.whatsapp-message.vendor {
  margin-left: auto;
}

.whatsapp-message.vendor p {
  background: #DCF8C6;
}

.whatsapp-booking {
  margin: 15px 0;
}

.booking-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.booking-header {
  background: var(--primary-light);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-header h4 {
  margin: 0;
  font-size: 0.9rem;
}

.booking-status {
  background: var(--success);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
}

.booking-details {
  padding: 10px;
}

.booking-details p {
  margin: 5px 0;
  font-size: 0.8rem;
}

.booking-details i {
  margin-right: 5px;
  color: var(--primary);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  margin-bottom: 1.5rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

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

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

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  min-width: 20px;
  margin-right: 10px;
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
  background: #ffffff;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #495057;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.contact-badge i {
  font-size: 0.8rem;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1d29;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-hero {
      padding: 6rem 0 4rem;
  }
  
  .contact-hero h1 {
      font-size: 2.5rem;
  }
  
  .contact-hero p {
      font-size: 1.1rem;
  }
  
  .contact-badge {
      padding: 0.6rem 1.2rem;
      font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-hero h1 {
      font-size: 2rem;
  }
  
  .contact-hero p {
      font-size: 1rem;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 3rem;
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  min-width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-form {
  padding: 3rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

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

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

@keyframes floatImage {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

@keyframes floatPhone {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes floatUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-15px);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 158, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 158, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 158, 0, 0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .chatbot-container,
  .b2b-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .chatbot-image,
  .b2b-image {
    display: flex;
    justify-content: center;
  }
  
  .b2b-content {
    order: 1;
  }
  
  .b2b-image {
    order: 2;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
}
.contact-header {
  background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
  padding: 8rem 0 5rem;
  position: relative;
  color: white;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiPjwvcmVjdD4KPHBhdGggZD0iTTAgNUw1IDBaTTYgNEw0IDZaTS0xIDFMMSAtMVoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiPjwvcGF0aD4KPC9zdmc+');
  z-index: 0;
}

.contact-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-text {
  flex: 2;
}

.contact-lottie {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-header p {
  font-size: 1.2rem;
  max-width: 700px;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

#contact-animation {
  width: 100%;
  max-width: 200px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .contact-header-content {
    flex-direction: column;
  }
  
  .contact-text {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .contact-header p {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-info,
  .contact-form {
    padding: 2rem;
  }
}

/* Enhanced Chat Interface */
/* ======================
   WALAWAY BOT CHAT STYLE
   ====================== */

/* Phone container */
.phone-frame {
  position: relative;
  width: 320px;
  max-width: 100%;
  height: 640px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 10px #f0f0f0;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.phone-header {
  height: 30px;
  background: #000;
  position: relative;
}

.phone-notch {
  position: absolute;
  width: 160px;
  height: 30px;
  background: #000;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Chat container */
.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--primary, #007bff);
  color: white;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  background-color: #ffffff33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* Status */
.status {
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 0;
}

/* Chat messages */
.chat-messages {
  flex: 1;
  padding: 15px;
  background: #f5f5f5;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.message {
  max-width: 85%;
  margin-bottom: 15px;
  position: relative;
}

.message p {
  margin-bottom: 5px;
  padding: 10px 15px;
  border-radius: 18px;
  line-height: 1.4;
}

.message.bot {
  align-self: flex-start;
}

.message.bot p {
  background: #e6e6e6;
  color: #333;
  border-bottom-left-radius: 5px;
}

.message.user {
  align-self: flex-end;
}

.message.user p {
  background: var(--primary, #007bff);
  color: white;
  border-bottom-right-radius: 5px;
}

.message ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

.time {
  font-size: 0.7rem;
  color: #999;
  margin-left: 10px;
}

/* Suggestion Cards */
.suggestion-cards {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
}

.suggestion-card {
  min-width: 130px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  flex-shrink: 0;
}

.suggestion-card .icon {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.suggestion-card h5 {
  font-size: 0.9rem;
  margin: 4px 0;
  font-weight: 600;
}

.suggestion-card p {
  font-size: 0.75rem;
  color: var(--primary, #007bff);
  margin: 0;
}

/* Quick replies (optional use) */
.quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 5px 0;
  margin-top: 10px;
}

.quick-replies button {
  white-space: nowrap;
  background: white;
  border: 1px solid var(--primary, #007bff);
  color: var(--primary, #007bff);
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-replies button:hover {
  background: var(--primary, #007bff);
  color: white;
}

/* Feature Badge */
.feature-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--secondary, #ffa500);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 158, 0, 0.3);
  animation: pulse 2s infinite;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,158,0, 0.3); }
  70% { transform: scale(1.05); box-shadow: 0 0 10px 10px rgba(255,158,0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,158,0, 0); }
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Scrollbar clean-up for mobile */
.chat-messages::-webkit-scrollbar,
.suggestion-cards::-webkit-scrollbar {
  height: 6px;
}
.chat-messages::-webkit-scrollbar-thumb,
.suggestion-cards::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Responsive support */
@media (max-width: 768px) {
  .phone-frame {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }

  .chat-messages {
    padding: 10px;
  }

  .chat-header {
    padding: 10px;
  }
}
