@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-pink: #FCE7F3;
  --secondary-pink: #F9A8D4;
  --dark-blue: #0F2B6B;
  --white: #FFFFFF;
  --text-dark: #1F2937;
  --text-light: #4B5563;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
  width: auto;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-pink);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark-blue);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-blue);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--dark-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(15, 43, 107, 0.3);
}

.btn-primary:hover {
  background-color: #0b1f52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 43, 107, 0.4);
  color: var(--white);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}

/* Hero Section */
.hero {
  padding: 180px 2rem 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('assets/hero_bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--secondary-pink);
  opacity: 0.2;
  filter: blur(80px);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header {
  padding: 180px 2rem 100px;
  text-align: center;
  background: var(--primary-pink);
  color: var(--dark-blue);
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.subtitle {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero p.desc {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: var(--white);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Sections Common */
section {
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin: 0 auto 3rem auto;
  position: relative;
  display: block;
  width: fit-content;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary-pink);
  border-radius: 2px;
}

/* Grid Layouts */
.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Features/Why Choose Us */
.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(249, 168, 212, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-pink);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-pink);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text-light);
}

/* Fleet/Vehicles Section */
.fleet-section {
  background-color: #fafbfc;
}

.fleet-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.fleet-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary-pink);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fleet-img-wrapper {
  height: 200px;
  background: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.fleet-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-wrapper img {
  transform: scale(1.05);
}

.fleet-info {
  padding: 2rem;
}

.fleet-info h3 {
  color: var(--dark-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.fleet-info p.desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.fleet-features {
  margin-bottom: 1.5rem;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.fleet-features li i {
  color: var(--secondary-pink);
}

.fleet-btns {
  margin-top: 1.5rem;
  display: flex;
  gap: 10px;
}

.fleet-btns .btn {
  flex: 1;
  padding: 0.8rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Service Cards */
.service-card {
  background: linear-gradient(145deg, var(--white), var(--primary-pink));
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  min-height: 50px;
}

.service-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

/* Destination Cards */
.destination-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.destination-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.destination-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-box {
  background: var(--primary-pink);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-pink);
}

.mv-box h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: var(--dark-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-pink);
  margin-top: 5px;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-item p {
  margin-bottom: 0;
  opacity: 0.8;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--primary-pink);
}

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

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

.form-group.full {
  grid-column: span 2;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #f9fafb;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-pink);
  box-shadow: 0 0 0 3px rgba(249, 168, 212, 0.2);
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo {
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-pink);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-pink);
  padding-left: 5px;
}

.footer-contact .info-item i {
  color: var(--secondary-pink);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Page Headers */
.page-header {
  padding: 150px 2rem 80px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a8a 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--white);
  font-size: 1.2rem;
}

.mv-box p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Core Values */
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(249, 168, 212, 0.2);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-pink);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--secondary-pink);
  margin-bottom: 1rem;
}

.value-card h4 {
  color: var(--dark-blue);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, var(--white), #fff5f8);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-card .review {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-card h4 {
  color: var(--dark-blue);
  font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 150px 2rem 80px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

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

  .hero {
    padding: 130px 1.5rem 70px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p.subtitle {
    font-size: 1.2rem;
  }
  .hero p.desc {
    font-size: 1rem;
  }
  
  .page-header {
    padding: 120px 1.5rem 60px;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }

  .form-grid, .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .form-group.full {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 1rem;
  }
  
  .logo {
    gap: 5px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .logo span {
    font-size: 1.1rem;
  }

  .hero {
    padding: 110px 1rem 50px;
  }
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .hero p.subtitle {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .hero p.desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-btns, .fleet-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .hero-btns .btn, .fleet-btns .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  section {
    padding: 2.5rem 1rem;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--primary-pink);
  border-top-color: var(--dark-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
