/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fafaf8;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a1628;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: 48px;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff9800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-call .btn-text {
  display: none;
}

.btn-mobile-menu {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-mobile-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0a1628;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: #ff9800;
}

.btn-mobile-call {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .btn-call .btn-text {
    display: inline;
  }

  .btn-mobile-menu {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .logo-img {
    height: 56px;
    width: 56px;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background-color: #ff9800;
  color: white;
}

.btn-primary:hover {
  background-color: #f57c00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #ff9800;
  border: 2px solid #ff9800;
}

.btn-outline:hover {
  background-color: #ff9800;
  color: white;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  height: 48px;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #fafaf8, #fafaf8, rgba(255, 152, 0, 0.1));
  padding: 5rem 0 7rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%23000000' fillOpacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 152, 0, 0.3);
  background-color: rgba(255, 152, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: #ff9800;
  width: fit-content;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.gradient-text {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 50%, #0a1628 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  text-wrap: pretty;
  line-height: 1.6;
  max-width: 36rem;
}

.hero-button {
  padding-top: 1rem;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff9800;
}

.stat-value span {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
}

/* Hero Form */
.hero-form-container {
  position: relative;
}

.booking-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid #e5e5e596;
}

.card-header {
  padding: 2rem 2rem 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #666;
  font-size: 0.875rem;
}

.booking-form {
  padding: 1rem 2rem 2rem;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-label i {
  color: #ff9800;
  width: 16px;
  height: 16px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e596;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* Section Common Styles */
.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Services Section */
.services-section {
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
  background-color: white;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 152, 0, 0.05), transparent);
}

.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%23000000' fillOpacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.service-card {
  background: white;
  border: 2px solid #e5e5e596;
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(255, 152, 0, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card .card-header {
  padding: 2rem 2rem 0;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 152, 0, 0.1);
  border-radius: 0.5rem;
  color: #ff9800;
  margin-bottom: 0.75rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card .card-content {
  padding: 0 2rem 2rem;
}

.service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0 7rem;
  background-color: rgba(255, 152, 0, 0.05);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e5e596;
  border-radius: 1rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
  border-color: #ff9800;
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff9800;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding: 2rem 2rem 0;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
}

.pricing-content {
  padding: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.pricing-features i {
  color: #ff9800;
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Fleet Section */
.fleet-section {
  padding: 5rem 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%23000000' fillOpacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

@media (min-width: 768px) {
  .vehicles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.vehicle-image {
  height: 150px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-info {
  border-top: 4px solid #ff9800;
  padding-top: 1rem;
}

.vehicle-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.vehicle-capacity {
  font-size: 0.875rem;
  color: #666;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border: 2px solid #e5e5e596;
  border-radius: 0.5rem;
  min-width: 100px;
  transition: all 0.3s;
}

.amenity-card:hover {
  border-color: #ff9800;
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 152, 0, 0.1);
  border-radius: 0.5rem;
  color: #ff9800;
}

.amenity-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

/* Transport Services Section */
.transport-services-section {
  padding: 5rem 0;
  background-color: #fafaf8;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .transport-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.transport-card {
  background: white;
  /* border: 2px solid #e5e5e596; */
  border:2px solid #e5e5e59696;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.transport-card:hover {
  border-color: #ff9800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transport-image {
  height: 120px;
  overflow: hidden;
}

.transport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.transport-card:hover .transport-image img {
  transform: scale(1.1);
}

.transport-content {
  padding: 1rem;
}

.transport-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.transport-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: #ff9800;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.transport-link:hover {
  text-decoration: underline;
}

/* Added styles for toggle icon rotation */
.transport-link i {
  transition: transform 0.3s ease;
}

.transport-link.active i {
  transform: rotate(180deg);
}

/* Added styles for toggle details content */
.toggle-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
  opacity: 0;
}

.toggle-details.active {
  max-height: 200px;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e5e596;
  opacity: 1;
}

.toggle-details p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.btn-reserve-small {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background-color: #ff9800;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-reserve-small:hover {
  background-color: #f57c00;
}

/* Featured Service Blocks */
.featured-service-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .featured-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-service-grid.reverse .featured-content {
  order: 2;
}

.featured-service-grid.reverse .featured-image {
  order: 1;
}

@media (min-width: 768px) {
  .featured-service-grid.reverse .featured-content {
    order: 1;
  }

  .featured-service-grid.reverse .featured-image {
    order: 2;
  }
}

.featured-image {
  height: 250px;
  border-radius: 0.75rem;
  overflow: hidden;
}

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

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border: 2px solid #e5e5e596;
  border-radius: 0.75rem;
}

.featured-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.featured-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.featured-list .arrow,
.featured-list .check {
  color: #ff9800;
  font-weight: bold;
}

.featured-list .highlight {
  color: #ff9800;
  font-weight: 500;
}

.featured-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Useful Links Section */
.useful-links-section {
  padding: 4rem 0 5rem;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e596;
}

.useful-links-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.useful-link-card {
  display: block;
  padding: 1.5rem;
  background: white;
  border: 2px solid #e5e5e596;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.useful-link-card:hover {
  border-color: #ff9800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.useful-link-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 152, 0, 0.1);
  border-radius: 0.5rem;
  color: #ff9800;
  flex-shrink: 0;
  transition: all 0.3s;
}

.useful-link-card:hover .link-icon {
  background-color: #ff9800;
  color: white;
}

.link-content {
  flex: 1;
}

.link-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  transition: color 0.3s;
}

.useful-link-card:hover .link-title {
  color: #ff9800;
}

.link-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .useful-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
.footer {
  background-color: #0a1628;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo-img {
  height: 48px;
  width: 48px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff9800;
}

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

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contacts i {
  color: #ff9800;
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background-color: #ff9800;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: -200px;
  right: 1rem;
  background: white;
  border: 2px solid #ff9800;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  z-index: 9999;
  transition: bottom 0.3s ease;
}

.toast.show {
  bottom: 2rem;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.toast-message {
  font-size: 0.875rem;
  color: #666;
}
