/*
Theme Name: Sky Cabs
Description: Professional taxi booking theme for Sky Cabs - Premium taxi services in Stirling & Scotland
Version: 1.0
Author: Sky Cabs
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 3;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e40af;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  color: #eab308;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #1e40af;
}

.cta-button {
  background: #eab308;
  color: #1f2937;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  position: absolute;      /* NEW */
  top: 1rem;               /* Adjust spacing from top */
  right: 1rem;             /* Adjust spacing from right */
}

.cta-button:hover {
  background: #d97706;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .main-nav.active ul {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1e3a8a, #1e40af, #1e3a8a);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text .highlight {
  color: #fbbf24;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #bfdbfe;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-btn.primary {
  background: #eab308;
  color: #1f2937;
}

.contact-btn.secondary {
  background: white;
  color: #1e40af;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: #fbbf24;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

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

/* Booking Form */
.booking-form {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  color: #1f2937;
}

.booking-form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

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

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.submit-btn {
  width: 100%;
  background: #1e40af;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: #1d4ed8;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: #1e40af;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.service-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Special Services */
.special-services {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.special-services h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.special-item {
  text-align: center;
  padding: 1.5rem;
  background: #eff6ff;
  border-radius: 1rem;
}

.special-item h4 {
  font-weight: 600;
  color: #1f2937;
  margin: 1rem 0 0.5rem;
}

.special-item p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Coverage Section */
.coverage-section {
  padding: 80px 0;
  background: white;
}

.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coverage-image {
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-item {
  display: flex;
  align-items: center;
  color: #374151;
}

.area-item::before {
  content: "📍";
  margin-right: 0.5rem;
}

.coverage-cta {
  background: #eff6ff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.coverage-cta h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.coverage-cta p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.coverage-cta a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #f9fafb;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-text > p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.about-features {
  space-y: 1.5rem;
}

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

.feature-icon {
  width: 24px;
  height: 24px;
  color: #1e40af;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #6b7280;
}

.about-image {
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.emergency-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.emergency-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.emergency-card p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.emergency-card a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #1e3a8a;
  color: white;
}

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

.contact-card {
  background: #1e40af;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  color: #fbbf24;
  margin: 0 auto 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.contact-card a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-card a:hover {
  color: #f59e0b;
}

/* Bottom CTA */
.bottom-cta {
  background: #eab308;
  color: #1f2937;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.bottom-cta h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.bottom-cta p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-buttons .primary {
  background: #1e40af;
  color: white;
}

.cta-buttons .secondary {
  background: white;
  color: #1f2937;
}

.cta-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background: #111827;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .coverage-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .special-grid {
    grid-template-columns: 1fr;
  }
  
  .coverage-areas {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .service-card,
  .special-services,
  .emergency-card {
    padding: 1.5rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.hidden { display: none; }

/* WordPress Specific */
.wp-block-group {
  margin: 0;
}

.alignwide {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}