:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ff6b00;  /* ConVan orange */
  --accent-color: #ff8533;    /* Lighter orange for accents */
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --dark-overlay: rgba(26, 26, 26, 0.85);
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Topbar Styles */
.topbar {
  background-color: var(--white);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 20px;
}

.topbar-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.topbar-link:hover {
  color: var(--secondary-color);
}

.topbar-link i {
  font-size: 1em;
}

/* Top CTA Styles */
.top-cta {
  background-color: var(--primary-color);
  padding: 10px 0;
  color: var(--white);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.top-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-options {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.contact-options a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.contact-options a:hover {
  color: var(--secondary-color);
}

.promo-text {
  font-weight: bold;
  position: relative;
  overflow: hidden;
  animation: fadeInLeft 0.8s ease-out;
  text-align: center;
}

.highlight {
  color: var(--secondary-color);
  display: inline-block;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineSlide 3s infinite;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes underlineSlide {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* Enhanced Section Transitions */
html {
  scroll-behavior: smooth;
}

.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section Styles - Enhanced */
.hero {
  position: relative;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--dark-overlay) 0%,
    rgba(26, 26, 26, 0.75) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-title {
  color: var(--secondary-color) !important;
  display: inline-block;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8em;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  padding: 4px 0;
  border-left: none;
  background: none;
}

.hero-subtitle {
  font-size: 2em;
  margin-top: 15px;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--white);
}

/* Enhanced media queries for hero section */
@media (max-width: 768px) {
  .video-background video {
    width: 100%;
    height: 100%;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2em;
  }

  .highlight-title {
    font-size: 1em;
    padding: 3px 10px;
  }
}

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

  .hero h1 {
    font-size: 1.8em;
  }

  .highlight-title {
    font-size: 0.9em;
    padding: 3px 8px;
  }
}

/* Calculator Widget Styles */
.calculator-widget {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(255, 107, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  color: var(--text-color);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.8s ease-out 0.5s forwards;
}

@keyframes slideUpFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: bold;
}

.form-group select,
.form-group input[type="number"] {
  padding: 10px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 1em;
}

.total-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  padding-top: 20px;
  border-top: 2px solid var(--light-gray);
  color: var(--secondary-color);
}

/* Enhanced Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-out;
}

.contact-section.active::before {
  transform: scaleX(1);
}

.contact-section h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 40px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out;
}

.contact-section.active h2::after {
  transform: scaleX(1);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: scale(0.98) translateY(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.05), rgba(231, 76, 60, 0.05));
  z-index: 0;
}

.contact-section.active .contact-form {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.contact-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  outline: none;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--secondary-color);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.checkbox-label:hover {
  background-color: rgba(255, 107, 0, 0.05);
}

.submit-btn {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  color: var(--white);
  padding: 18px 45px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

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

.submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}

.submit-btn:hover::after {
  animation: shine 1.5s ease-out;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-section h2 {
    font-size: 2em;
    padding: 0 20px;
  }

  .contact-form {
    margin: 20px;
    padding: 20px;
  }

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

/* Fleet Section Styles */
.fleet-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.fleet-section h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fleet-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.cars-title {
  margin-top: 80px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.vehicle-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(52, 152, 219, 0.1);
  transition: all 0.3s ease;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.03), rgba(231, 76, 60, 0.03));
  z-index: 0;
}

.vehicle-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-icon img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-icon img {
  transform: scale(1.5);
}

.vehicle-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.vehicle-model {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.vehicle-capacity {
  color: var(--text-color);
  font-size: 0.9em;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* Price List Section Styles */
.price-list-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
}

.price-list-section h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-list-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.price-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.price-category {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.price-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.category-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
}

.category-header h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.category-header p {
  color: var(--secondary-color);
  font-size: 1.1em;
}

.price-list {
  list-style: none;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: background-color 0.3s ease;
}

.price-item:hover {
  background-color: rgba(255, 107, 0, 0.05);
  border-radius: 8px;
  padding: 12px 10px;
}

.price-item:last-child {
  border-bottom: none;
}

.vehicle-type {
  font-weight: 500;
}

.price-amount {
  color: var(--secondary-color);
  font-weight: bold;
}

.price-note {
  font-size: 0.9em;
  color: #666;
  margin-top: 20px;
  text-align: center;
  font-style: italic;
}

/* Why Choose Us Section Styles */
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.why-choose-us h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px;
}

.benefit-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.15);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  color: var(--primary-color);
  font-size: 1.3em;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-content p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 15px;
  }

  .benefit-card {
    padding: 20px;
    margin-bottom: 10px;
  }

  .why-choose-us {
    padding: 40px 0;
  }

  .why-choose-us h2 {
    font-size: 2em;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .benefit-content h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
  }

  .benefit-content p {
    font-size: 0.95em;
    line-height: 1.5;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .benefit-card {
    min-width: calc(100% - 40px);
    flex-direction: row;
    align-items: center;
    padding: 15px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .benefit-card h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
  }

  .benefit-card p {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .benefits-track {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .benefit-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .topbar .container,
  .top-cta .container {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .topbar-contact {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .brand {
    margin-bottom: 15px;
  }

  .promo-text {
    text-align: center;
    font-size: 0.9em;
    line-height: 1.4;
    margin-left: 0;
  }
}

/* Update responsive styles for top-cta */
@media (max-width: 768px) {
  .top-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-buttons {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .price-list-section {
    padding: 40px 0;
  }

  .price-list-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .price-categories {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }

  .price-category {
    padding: 20px;
  }

  .category-header h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2em;
  }

  .contact-options a {
    width: 100%;
    min-width: unset;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .calculator-widget {
    margin: 15px;
    padding: 15px;
  }

  .contact-form {
    margin: 15px;
    padding: 15px;
  }

  .total-price {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  /* Add any additional styles for landscape orientation on smaller screens */
}

/* Improve touch targets for interactive elements */
@media (hover: none) and (pointer: coarse) {
  .contact-options a,
  .submit-btn,
  select,
  input[type="checkbox"],
  .checkbox-label {
    cursor: default;
  }

  .contact-options a:active,
  .submit-btn:active {
    transform: scale(0.98);
  }
}

/* Fix 100vh issues on mobile */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* Vehicle Selection Styles */
.vehicle-selection {
  margin-bottom: 30px;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.vehicle-option {
  position: relative;
}

.vehicle-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.vehicle-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-label:hover {
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vehicle-img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.vehicle-label span {
  font-size: 0.9em;
  text-align: center;
  color: var(--text-color);
}

.vehicle-option input[type="radio"]:checked + .vehicle-label {
  border-color: var(--secondary-color);
  background-color: rgba(255, 107, 0, 0.05);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.vehicle-option input[type="radio"]:checked + .vehicle-label .vehicle-img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .vehicle-img {
    width: 100px;
  }

  .vehicle-label {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.floating-contact-buttons .contact-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(0);
  animation: popIn 0.3s ease forwards;
  text-decoration: none;
  color: white;
  position: relative;
}

.floating-contact-buttons .contact-button::before {
  content: attr(data-title);
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-contact-buttons .contact-button:hover::before {
  opacity: 1;
  visibility: visible;
}

.floating-contact-buttons .phone {
  background-color: var(--secondary-color);
  animation-delay: 0.1s;
}

.floating-contact-buttons .whatsapp {
  background-color: #25D366;
  animation-delay: 0.2s;
}

.floating-contact-buttons .email {
  background-color: var(--accent-color);
  animation-delay: 0.3s;
}

@keyframes popIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Brand and Logo Styles */
.brand {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 8px;
  border-radius: 4px;
}

.logo {
  height: 180px;
  width: auto;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .logo {
    height: 120px;
  }

  .topbar .container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .brand {
    margin-bottom: 10px;
    padding: 5px;
  }
}

/* Responsive styles for topbar */
@media (max-width: 768px) {
  .topbar {
    padding: 5px 0;
    background-color: var(--white);
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar-contact {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .topbar-link {
    font-size: 0.8em;
  }
}

/* Update top-cta styles */
.top-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9em;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.contact-button i {
  font-size: 1.1em;
}

/* Update responsive styles */
@media (max-width: 768px) {
  .top-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-buttons {
    margin-top: 10px;
  }
}

/* CTA Strip Styles */
.cta-strip {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.cta-strip.accent {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
}

.cta-strip.dark {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
  color: var(--white);
}

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

.cta-content h3 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.phone-button {
  background-color: var(--secondary-color);
  color: var(--white);
}

.cta-button.whatsapp-button {
  background-color: #25D366;
  color: var(--white);
}

.cta-strip.accent .cta-button.phone-button {
  background-color: var(--white);
  color: var(--secondary-color);
}

.cta-strip.dark .cta-button.phone-button {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Responsive styles for CTAs */
@media (max-width: 768px) {
  .cta-content h3 {
    font-size: 1.5em;
  }
  
  .cta-content p {
    font-size: 1em;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}