/* style.css */

:root {
  --primary-color: #1daedd;
  --primary-dark: #0d8cb8;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

h1 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.header-logo {
  height: 40px;
  margin-right: 10px;
}

.taxi {
  font-weight: 700;
  color: #000000;
}

.bots {
  font-weight: 700;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('WavingHi.png') no-repeat center center;
  background-size: 60% auto;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Common Section Styles */
section {
  padding: 30px 0;
}

section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

/* Services Section */
.services {
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  padding: 30px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 174, 221, 0.1);
  border-radius: 50%;
}

.service-card h4 {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 1.2rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .service-card {
    padding: 25px 20px;
  }
}

/* Rate Card Section */
.ratecard {
  background-color: var(--light-bg);
}

.table-section {
  margin-bottom: 50px;
}

.table-title {
  text-align: center;
  margin: 40px 0 25px;
  color: var(--text-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.table-title i {
  color: var(--primary-color);
}

.ratecard table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}

.ratecard th {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-weight: 500;
}

.ratecard td {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.ratecard tr:nth-child(even) {
  background-color: rgba(29, 174, 221, 0.05);
}

.ratecard tr:hover {
  background-color: rgba(29, 174, 221, 0.1);
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}

/* Partner Program */
.partner-program {
  background-color: var(--white);
}

.tabs-container {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  background: #f1f1f1;
}

.tab-button {
  flex: 1;
  padding: 15px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tab-button.active {
  background: var(--primary-color);
  color: white;
}

.tab-button:not(.active):hover {
  background: #e0e0e0;
}

.tab-content {
  display: none;
  padding: 30px;
  background-color: var(--white);
}

.tab-content.active {
  display: block;
}

.partner-card {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.partner-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.benefits-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.benefits-list i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.partner-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Booking Form */
.booking {
  background-color: var(--light-bg);
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(29, 174, 221, 0.1);
  transform: translateY(-2px);
}

/* Contact Section */
.contact-info {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 174, 221, 0.1);
  border-radius: 50%;
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  display: block;
  margin-bottom: 5px;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--border-radius);
  margin-top: 30px;
  box-shadow: var(--box-shadow);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(29, 174, 221, 0.3);
}

.cta-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(29, 174, 221, 0.4);
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  z-index: 99;
  transition: all 0.3s ease;
}

.floating-call-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  section {
    padding: 50px 0;
  }

  section h3 {
    font-size: 1.7rem;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-button {
    width: 100%;
  }

  .ratecard table {
    display: block;
    overflow-x: auto;
  }

  .contact-map {
    height: 300px;
  }

  .floating-call-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.7rem;
  }

  .table-title {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 5px;
  }

  .social-links {
    flex-direction: column;
    gap: 15px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-bottom: 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
