/* ========================================
   TOP NAVIGATION BAR
   ======================================== */

.navbar {
  background: linear-gradient(135deg, #0038B8 0%, #1565c0 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 56, 184, 0.3);
  border-bottom: 3px solid #ffffff;
}

.navbar .container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 40px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand i {
  font-size: 28px;
  color: #ffffff;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-links a:hover {
  color: #E3F2FD;
}

.navbar-links a:hover::after {
  transform: scaleX(1);
}

.navbar-cta {
  background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.navbar-cta:hover {
  background: linear-gradient(135deg, #00E676 0%, #69F0AE 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.4);
}

.navbar-cta i {
  font-size: 18px;
}

/* Dropdown Menu */
.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: white !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}

.navbar-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.navbar-dropdown:hover .navbar-dropdown-toggle i {
  transform: rotate(180deg);
}

.navbar-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 250px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.navbar-dropdown-menu a::after {
  display: none;
}

.navbar-dropdown-menu a:hover {
  background: #f5f5f5;
  color: #0038B8;
  padding-right: 24px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .navbar-links {
    gap: 20px;
  }
  
  .navbar-links a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .navbar-content {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 0;
  }
  
  .navbar-brand {
    font-size: 20px;
  }
  
  .navbar-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    order: 3;
  }
  
  .navbar-cta {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ========================================
   MODERN HERO SECTION - TWO COLUMN LAYOUT
   ======================================== */

.hero-modern {
  background: linear-gradient(135deg, #0c4da2 0%, #1e88e5 50%, #42a5f5 100%);
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Right Side - Content */
.hero-right {
  color: white;
}

.hero-title-modern {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.highlight-gradient {
  background: linear-gradient(90deg, #ffffff 0%, #e3f2fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Service Cards Grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: white;
}

.service-card.purple .service-icon {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
}

.service-card.blue .service-icon {
  background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
}

.service-card.light-blue .service-icon {
  background: linear-gradient(135deg, #64b5f6 0%, #90caf9 100%);
}

.service-card.yellow .service-icon {
  background: linear-gradient(135deg, #0277bd 0%, #03a9f4 100%);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.service-card p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-action {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-action.green {
  background: #10b981;
  color: white;
}

.btn-action.green:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-action.white {
  background: white;
  color: #0c4da2;
}

.btn-action.white:hover {
  background: #e3f2fd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.2);
}

.btn-action.orange {
  background: #f59e0b;
  color: white;
}

.btn-action.orange:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.hero-actions-secondary {
  display: flex;
  gap: 20px;
}

.btn-link {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.btn-link:hover {
  opacity: 1;
  transform: translateX(-5px);
}

/* Left Side - Order Form Card */
.hero-left {
  position: sticky;
  top: 20px;
}

.order-form-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-title i {
  color: #1976d2;
}

/* Compact Form Sections */
.form-section-mini {
  margin-bottom: 20px;
}

.form-label-mini {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}

/* Vehicle Buttons - Compact */
.vehicle-buttons-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vehicle-btn-mini {
  padding: 16px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.vehicle-btn-mini i {
  font-size: 24px;
  color: #6b7280;
}

.vehicle-btn-mini span {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.vehicle-btn-mini small {
  font-size: 12px;
  color: #10b981;
  font-weight: 700;
}

.vehicle-btn-mini:hover {
  border-color: #1976d2;
  background: #e3f2fd;
}

.vehicle-btn-mini.active {
  border-color: #1976d2;
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  color: white;
}

.vehicle-btn-mini.active i,
.vehicle-btn-mini.active span,
.vehicle-btn-mini.active small {
  color: white;
}

/* Urgency Options - Compact */
.urgency-options-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.urgency-radio-mini {
  display: block;
  position: relative;
  cursor: pointer;
}

.urgency-radio-mini input {
  position: absolute;
  opacity: 0;
}

.radio-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  transition: all 0.3s ease;
}

.radio-content i {
  font-size: 18px;
}

.radio-content strong {
  flex: 1;
  font-size: 14px;
  color: #374151;
}

.radio-content small {
  font-size: 13px;
  font-weight: 700;
}

.urgency-radio-mini.red .radio-content { border-color: #fee2e2; }
.urgency-radio-mini.red .radio-content i { color: #dc2626; }
.urgency-radio-mini.red .radio-content small { color: #dc2626; }

.urgency-radio-mini.orange .radio-content { border-color: #fed7aa; }
.urgency-radio-mini.orange .radio-content i { color: #ea580c; }
.urgency-radio-mini.orange .radio-content small { color: #ea580c; }

.urgency-radio-mini.green .radio-content { border-color: #d1fae5; }
.urgency-radio-mini.green .radio-content i { color: #059669; }
.urgency-radio-mini.green .radio-content small { color: #059669; }

.urgency-radio-mini input:checked + .radio-content {
  background: linear-gradient(to right, rgba(25, 118, 210, 0.1), transparent);
  border-color: #1976d2;
}

/* Input Groups */
.input-group-mini {
  position: relative;
  margin-bottom: 12px;
}

.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 16px;
}

.input-mini {
  width: 100%;
  padding: 14px 48px 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-mini:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

/* Calculate Button */
.btn-calculate-mini {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-calculate-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(25, 118, 210, 0.4);
}

.btn-calculate-mini:active {
  transform: translateY(0);
}

/* Result Display */
.result-clean {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-top: 16px;
}

.result-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 16px;
}

.result-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 8px;
}

.result-item.highlight {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
  color: white;
}

.result-label {
  font-size: 14px;
  font-weight: 600;
}

.result-value {
  font-size: 16px;
  font-weight: 700;
}

.result-value.price {
  font-size: 24px;
}

.price-breakdown {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-bottom: 16px;
}

.price-breakdown h5 {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: #6b7280;
}

.breakdown-item span:last-child {
  font-weight: 700;
  color: #10b981;
}

/* Order Button */
.btn-order-mini {
  width: 100%;
  padding: 14px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-order-mini:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left {
    order: 1;
    position: static;
  }
  
  .hero-right {
    order: 2;
  }
  
  .hero-title-modern {
    font-size: 36px;
  }
  
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-modern {
    padding: 40px 16px;
  }
  
  .hero-title-modern {
    font-size: 28px;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-action {
    width: 100%;
    justify-content: center;
  }
  
  .vehicle-buttons-mini {
    grid-template-columns: 1fr;
  }
  
  .order-form-card {
    padding: 24px;
  }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.footer-modern {
  background: linear-gradient(180deg, #0d47a1 0%, #1565c0 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-top {
  padding: 80px 20px 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Company Column */
.footer-col-main {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo i {
  font-size: 36px;
  color: #42a5f5;
}

.footer-logo h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  color: white;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #90caf9;
  margin-bottom: 12px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-btn:hover {
  background: white;
  color: #1565c0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.social-btn.whatsapp:hover {
  background: #25D366;
  color: white;
}

/* Footer Columns */
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #42a5f5;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(-5px);
}

.footer-links i {
  font-size: 12px;
  color: #42a5f5;
  width: 16px;
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact i {
  font-size: 18px;
  color: #42a5f5;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact strong {
  display: block;
  font-size: 13px;
  color: #90caf9;
  margin-bottom: 4px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

/* Operating Hours */
.footer-hours {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #42a5f5;
  margin-top: 20px;
}

.footer-hours i {
  color: #42a5f5;
  margin-right: 8px;
}

.footer-hours strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: white;
}

.footer-hours p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-credit i {
  color: #f44336;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-col-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-top {
    padding: 60px 20px 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}
