/* ======= RESET & BASE STYLES ======= */
:root {
  --primary-color: #a90707; /* Warna teratai hijau */
  --secondary-color: #a80000; /* Warna teratai hijau gelap */
  --accent-color: #cf2a2a; /* Warna teratai hijau muda */
  --text-color: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
  --dark-gray: #757575;
  --black-overlay: rgba(0, 0, 0, 0.6);
  --error-color: rgb(195, 26, 17);
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--white);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ======= LOADER ======= */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-content {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--gray);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader p {
  color: var(--text-color);
  font-weight: 500;
}

/* ======= HEADER & NAVIGATION ======= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  padding: 8px 12px;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 90px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.logo span {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
}

/* For responsive design */
@media (max-width: 768px) {
  .logo span {
    font-size: 1rem;
  }

  .logo img {
    height: 90px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .logo span {
    font-size: 0.9rem;
  }

  .logo img {
    height: 28px;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-list {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

/* ======= HERO SECTION ======= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../foto/bg1.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-overlay);
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .menu-toggle[aria-expanded='true'] .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded='true'] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #navMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 30px;
    transition: var(--transition);
    z-index: 1000;
  }

  #navMenu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .hero {
    height: 80vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 0 15px;
  }
}

/* ======= ABOUT SECTION STYLES ======= */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
}

.section-decorative-line {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

.about-section {
  background-color: var(--light-gray);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-intro {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 25px;
}

.about-image {
  flex: 1;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.stat-text-special {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1rem;
  color: var(--text-light);
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-up {
  transform: translateY(30px);
}

.fade-up.animated {
  transform: translateY(0);
}

.fade-right {
  transform: translateX(-30px);
}

.fade-right.animated {
  transform: translateX(0);
}

.fade-left {
  transform: translateX(30px);
}

.fade-left.animated {
  transform: translateX(0);
}

.scale-up {
  transform: scale(0.9);
}

.scale-up.animated {
  transform: scale(1);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

/* Responsive styles for about section */
@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text,
  .about-image {
    flex: none;
    width: 100%;
  }

  .about-stats {
    gap: 15px;
  }

  .stat-item {
    min-width: calc(50% - 15px);
    padding: 20px 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stat-item {
    min-width: 100%;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* ======= FEATURED SECTION STYLES ======= */
.featured-section {
  position: relative;
  background-color: var(--white);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.featured-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(139, 195, 74, 0.12));
  z-index: -1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.featured-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.featured-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-color);
}

.featured-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.featured-box:hover .featured-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.featured-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.featured-box:hover .featured-icon i {
  color: var(--white);
}

.featured-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.featured-desc {
  color: var(--text-light);
  line-height: 1.7;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  margin: 80px 0;
}

/* ======= FAQ SECTION STYLES ======= */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: var(--white);
  cursor: pointer;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  transition: var(--transition);
}

.accordion-button:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

.accordion-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}

.accordion-button i {
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-button[aria-expanded='true'] i {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content:not([hidden]) {
  padding: 0 25px 20px;
  max-height: 500px; /* Adjust this value as needed */
}

.accordion-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive styles */
@media (max-width: 992px) {
  .featured-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-divider {
    margin: 60px 0;
  }

  .accordion-button {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .accordion-content:not([hidden]) {
    padding: 0 20px 18px;
  }
}

@media (max-width: 480px) {
  .featured-box {
    padding: 30px 20px;
  }

  .featured-icon {
    width: 60px;
    height: 60px;
  }

  .featured-icon i {
    font-size: 1.5rem;
  }

  .featured-title {
    font-size: 1.2rem;
  }

  .accordion-button {
    padding: 15px;
    font-size: 0.95rem;
  }

  .accordion-content:not([hidden]) {
    padding: 0 15px 15px;
  }
}
/*END*/

/* ======= CAR RENTAL SECTION STYLES ======= */
.car-rental-section {
  background-color: var(--white);
  padding: 100px 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-container {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.car-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.car-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.05);
}

.car-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}

.car-header {
  padding: 20px 20px 10px;
}

.car-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.car-specs span {
  display: flex;
  align-items: center;
}

.car-specs i {
  margin-right: 5px;
  color: var(--primary-color);
}

.car-body {
  padding: 10px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.price-option {
  margin-bottom: 15px;
}

.price-title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  padding: 5px 0;
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.btn-order {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-order:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Rental Info Panel */
.rental-info-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  line-height: 1;
}

.info-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}
.info-content ul {
  padding-left: 20px;
  margin: 0;
}

.info-content ul li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.info-content p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.contact-link-rental {
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.contact-link-rental:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  background-color: var(--white);
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--text-light);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  color: var(--primary-color);
}

.modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
  text-align: center;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.btn-submit {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

/* Responsiveness */
@media (max-width: 992px) {
  .car-rental-section {
    padding: 80px 0;
  }

  .cars-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .car-rental-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .category-title {
    font-size: 1.6rem;
  }

  .info-card {
    padding: 20px;
  }

  .modal-content {
    padding: 20px;
    margin: 10% auto;
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-width: 576px) {
  .car-rental-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cars-grid {
    grid-template-columns: 1fr;
  }

  .rental-info-panel {
    display: flex;
    flex-direction: column;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .info-icon {
    margin-bottom: 15px;
  }

  .modal-content {
    padding: 15px;
    margin: 5% auto;
    width: 95%;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.95rem;
  }
}

/* Tambahan style untuk fitur promo */
.promo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #ff5722;
  color: white;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
}

/* Media queries tambahan */
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .modal-content {
    padding: 20px 15px;
  }

  .confirmation-message {
    flex-direction: column;
    text-align: center;
  }

  .confirmation-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* End */

/* ======= PROMO SECTION STYLES ======= */
.promo-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../foto/bg1.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.promo-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.promo-text p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.current-time {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 8px;
  display: inline-block;
}

.current-time p {
  margin: 0;
  font-size: 1rem;
}

.countdown-container {
  margin-top: 5px;
}

#current-time,
#countdown-timer {
  font-weight: 700;
  color: var(--primary-color);
}

.promo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.promo-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.promo-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
  transform: scale(1.1);
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 1;
}

.promo-badge-new {
  background-color: #28a745;
}

.promo-badge-limited {
  background-color: #dc3545;
}

.promo-content-inner {
  padding: 25px;
}

.promo-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
}

.promo-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: #ffc107;
  margin-right: 8px;
}

.rating-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.promo-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.promo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
}

.discounted-price,
.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-tag {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 8px;
}

.btn-promo {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-promo:hover {
  background-color: var(--primary-dark);
}

.promo-footer {
  text-align: center;
}

.promo-footer p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-light);
}

.all-promos-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.all-promos-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.btn-newsletter {
  padding: 12px 25px;
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Newsletter Modal Styles */
.newsletter-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.newsletter-modal.show {
  display: block;
  opacity: 1;
}

.newsletter-modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease;
  position: relative;
}

.newsletter-modal.show .newsletter-modal-content {
  transform: translateY(0);
  opacity: 1;
}

.newsletter-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.newsletter-close:hover {
  color: var(--primary-color);
}

.newsletter-modal h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--text-color);
}

.newsletter-modal p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #f7f7f7;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.btn-subscribe {
  padding: 12px 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
  background-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .promo-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .promo-section {
    padding: 60px 0;
  }

  .promo-cards {
    gap: 20px;
  }

  .promo-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .promo-text h2 {
    font-size: 1.8rem;
  }

  .newsletter-modal-content {
    padding: 30px 20px;
  }

  .promo-text {
    margin-bottom: 30px;
  }
}

/* END */
/* ======= LEGAL DOCUMENTS SECTION ======= */
.legal-section {
  background-color: var(--white);
  padding: 100px 0;
}

.legal-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.legal-documents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.legal-doc-item {
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.legal-doc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.legal-doc-icon {
  font-size: 2rem;
  color: var(--primary-color);
  padding: 15px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-doc-content {
  flex-grow: 1;
}

.legal-doc-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.legal-doc-content p {
  color: var(--text-light);
  margin-bottom: 8px;
}

.legal-doc-badge {
  display: inline-block;
  background-color: var(--success-color);
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.legal-doc-action {
  margin-left: 20px;
}

.btn-view-doc {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-view-doc:hover {
  background-color: var(--primary-color);
  color: white;
}

.legal-certification {
  margin-top: 60px;
}

.certification-header {
  text-align: center;
  margin-bottom: 30px;
}

.certification-header h3 {
  font-size: 1.8rem;
  color: var(--text-color);
}

.certification-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cert-logo {
  text-align: center;
  width: 150px;
}

.cert-logo img {
  filter: grayscale(100%);
  transition: all 0.3s ease;
  max-width: 100%;
  height: auto;
}

.cert-logo:hover img {
  filter: grayscale(0%);
}

.cert-logo p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Document Modal Styles */
.document-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 30px;
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-modal:hover {
  color: var(--text-color);
}

.document-display {
  margin: 30px 0;
  text-align: center;
}

.document-display img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.document-info {
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

/* ======= ENHANCED CAROUSEL SECTION ======= */
.carousel-section {
  background-color: var(--light-gray);
  padding: 100px 0;
  overflow: hidden;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.carousel-header {
  text-align: center;
  margin-bottom: 50px;
}

.carousel-header h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.carousel-wrapper {
  position: relative;
}

.carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carousel-img {
  position: relative;
  overflow: hidden;
  height: 60vh;
  max-height: 600px;
}

.carousel-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.carousel-slide:hover .carousel-img img {
  transform: scale(1.05);
}

.carousel-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: white;
  z-index: 2;
}

.car-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.car-features span {
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.car-features i {
  margin-right: 5px;
}

.car-description {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 20px;
}

.carousel-arrow {
  background-color: rgba(255, 255, 255, 0.7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  border: none;
  color: var(--text-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: white;
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(var(--primary-rgb), 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .car-title {
    font-size: 1.8rem;
  }

  .carousel-img {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .legal-doc-item {
    flex-direction: column;
    text-align: center;
  }

  .legal-doc-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .legal-doc-action {
    margin-left: 0;
    margin-top: 15px;
  }

  .certification-logos {
    gap: 20px;
  }

  .carousel-img {
    height: 40vh;
  }

  .car-title {
    font-size: 1.5rem;
  }

  .car-features {
    font-size: 0.9rem;
    gap: 10px;
  }

  .car-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-img {
    height: 35vh;
  }

  .carousel-text {
    padding: 15px;
  }

  .car-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
}
/*END*/
/* ======= CONTACT SECTION STYLES ======= */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 15px;
}

/* Location Tabs */
.location-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tabs-container {
  display: flex;
  background-color: var(--white);
  border-radius: 50px;
  padding: 8px;
  box-shadow: var(--shadow);
}

.location-tab {
  background: none;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-tab i {
  font-size: 1rem;
}

.location-tab:hover {
  color: var(--primary-color);
}

.location-tab.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Location Content */
.contact-info-container {
  margin-bottom: 60px;
  position: relative;
}

.location-content {
  display: none;
}

.location-content.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.location-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.location-badge {
  display: inline-block;
  padding: 6px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 15px;
}

.location-title {
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color-light);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-color);
}

.contact-text p {
  margin: 5px 0;
  line-height: 1.6;
}

.sub-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.highlight-text {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-link-lokasi {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-link-lokasi:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

/* Map and Form */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.map-container,
.contact-form-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Map Styles */
.map-wrapper {
  position: relative;
  height: 100%;
  background-color: var(--white);
  border-radius: 10px;
}

.map-tabs {
  display: flex;
  background-color: var(--primary-color);
  overflow: hidden;
}

.map-tab {
  flex: 1;
  padding: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.map-tab:last-child {
  border-right: none;
}

.map-tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.map-tab.active {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.1);
}

.map-frames {
  height: calc(100% - 48px); /* Subtract the height of tabs */
}

.map-frame {
  display: none;
  height: 100%;
}

.map-frame.active {
  display: block;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

/* Form Styles */
.form-wrapper {
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
}

.form-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group-half {
  flex: 1;
}

.input-icon-wrapper {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.input-icon-wrapper.focused {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  transition: var(--transition);
}

.textarea-icon-wrapper .input-icon {
  top: 25px;
  transform: none;
}

.form-control {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-control:focus + .input-icon,
.input-icon-wrapper.focused .input-icon {
  color: var(--primary-color);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

/* Custom checkbox style */
.checkbox-group {
  margin-top: 30px;
}

.custom-checkbox {
  display: flex;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  align-items: center;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #f0f0f0;
  border-radius: 5px;
  transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #e0e0e0;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.95rem;
  color: var(--text-light);
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}

/* Error and success styling */
.form-control.error {
  border-color: var(--error-color);
}

.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 18px;
}

.form-response {
  margin-top: 20px;
  border-radius: 5px;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.form-response.success {
  max-height: 60px;
  padding: 15px;
}

.success-message {
  background-color: var(--success-color-light);
  color: var(--success-color);
  border-left: 4px solid var(--success-color);
  padding: 12px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-message i {
  font-size: 1.2rem;
}

/* Social Media Section */
.contact-social-media {
  text-align: center;
  padding-top: 40px;
}

.social-heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.social-decorative-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-8px);
}

.social-icon.twitter {
  background-color: #1da1f2;
}

.social-icon.facebook {
  background-color: #4267b2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.linkedin {
  background-color: #0077b5;
}

.social-icon.youtube {
  background-color: #ff0000;
}

.social-icon.whatsapp {
  background-color: #25d366;
}

.social-tooltip {
  position: absolute;
  bottom: -30px;
  background-color: var(--text-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.social-icon:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Animation for locations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .location-tabs .tabs-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .map-frame iframe {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .location-tab {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .map-frame iframe {
    min-height: 300px;
  }
}
/* ======= FOOTER STYLES ======= */
.footer {
  background-color: var(--text-color);
  color: var(--light-gray);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.about-column {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-logo:hover {
  color: var(--primary-color);
}

.company-description {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-link::before {
  content: '›';
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 20px;
}

.footer-link:hover::before {
  color: var(--primary-color);
}

.footer-contact {
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-link-footer {
  color: var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
}

.contact-link-footer:hover {
  color: var(--primary-color);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-link {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}

.legal-link:hover {
  color: var(--primary-color);
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--white);
  transform: translateY(-5px);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 99;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5c;
  transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-column {
    min-width: calc(50% - 40px);
  }

  .about-column {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-column {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-nav {
    justify-content: center;
  }

  .whatsapp-float {
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}
/*End*/
