* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-hero {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.smiley-logo {
  width: 60px;
  height: 60px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.company-title {
  color: black;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.tagline {
  color: #4dd0e1;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info {
  color: white;
  text-align: right;
  font-size: 0.9rem;
}

.contact-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.hero {
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero h1,
.hero h2 {
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 18px;
  color: #111;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
  display: inline-block;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero h1::after,
.hero h2::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd600, #ffb300);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .hero h1:hover::after,
.hero h2:hover::after {
  width: 80%;
}

.hero h1:hover,
.hero h2:hover {
  color: #111;
  text-shadow: 0 4px 16px rgba(255, 193, 7, 0.18), 0 1px 0 #ffd600;
} */

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: black;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.services {
  padding: 80px 0;
  background: #fff;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}

.services-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: black;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 0px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: black;
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 25px;
}

.destinations {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: black;
}

.destinations h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.destination-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 0;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  outline: 1px solid rgba(102, 102, 102, 0.6);
  outline-offset: 7px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.destination-card:hover {
  transform: translateY(-2px);
}

.destination-card:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.destination-card:hover {
  background: #fffece;
}

.destination-image {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.destination-image:hover {
  cursor: zoom-in;
}

.destination-image:hover img {
  transform: scale(1.02);
}

.destination-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 30px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding-bottom: 4px;
  margin-top: 25px;
}

.lightbox-close:hover {
  background: white;
  color: red;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
  border: 5px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: static;
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.65);
  padding: 12px 28px;
  border-radius: 8px;
  white-space: normal;
  z-index: 10;
  max-width: 90vw;
  box-sizing: border-box;
  display: block;
}

@media (max-width: 600px) {
  .lightbox-caption {
    font-size: 0.95rem;
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 6px;
  }
}

.passport-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.passport-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-wrapper {
  background: #fff;
  border: 1px solid #fff;
  padding: 60px 30px;
  margin: 20px auto;
  max-width: 1200px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cta-button:hover {
  background: #45a049;
  transform: translateY(-2px);
}

.poster-section {
  display: flex;
  justify-content: center;
}

.poster-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border: 3px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.passport-grid,
.visa-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.document-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

.document-card-visa {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 50px;
  border: 1px solid grey;
}

.document-card:hover {
  transform: translateY(-5px);
}

.document-image {
  width: 100px;
  height: 150px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  overflow: hidden;
  position: relative;
}

.document-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.document-image.has-image {
  background: transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.document-card h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: left;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.requirements-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  line-height: 1.5;
}

.requirements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 1.1rem;
}

.sub-requirements {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 0;

  border-left: 4px solid #ff6b35;
  margin-top: 15px;
}

.sub-requirements p {
  margin: 8px 0;
  color: #666;
  font-size: 1rem;
}

.note-box {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 0;

  border-left: 4px solid #2196f3;
  margin-top: 15px;
}

.note-box p {
  margin: 0;
  color: #1976d2;
  font-size: 0.9rem;
}

.visa-section {
  padding: 80px 0;
  background: white;
}

.visa-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}
.card-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 20px 25px;
  margin: -30px -30px 25px -30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.card-header .header-icon {
  width: 50px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.card-header .header-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.card-header .header-icon img.contain {
  object-fit: contain;
  padding: 2px;
}

.card-header .header-icon i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.card-header h3 {
  color: white !important;
  font-size: 1.4rem !important;
  font-weight: 700;
  margin: 0 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  flex: 1;
}

.document-card-visa .card-header {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.document-card-visa .card-header.variant-china {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.document-card-visa .card-header.variant-taiwan {
  background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.document-card-visa .card-header.variant-dubai {
  background: linear-gradient(135deg, #fd7e14 0%, #e55100 100%);
}

.document-card-visa .card-header.variant-japan {
  background: linear-gradient(135deg, #e83e8c 0%, #c2185b 100%);
}

.document-card-visa .card-header.variant-europe {
  background: linear-gradient(135deg, #6610f2 0%, #520dc2 100%);
}

.document-card-visa .card-header.variant-korea {
  background: linear-gradient(135deg, #ff7eb9 0% 100%);
}

.document-card-visa .card-header.variant-australia {
  background: linear-gradient(135deg, #2196f3 0% 100%);
}

.visa-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

.visa-card:hover {
  transform: translateY(-5px);
}

.visa-flag {
  width: 100px;
  height: 55px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  overflow: hidden;
  position: relative;
}

.visa-flag img {
  width: 100%;
  height: 100%;
}

.visa-flag.has-image {
  background: transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.visa-card h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
}

.visa-requirements {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.visa-requirements li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.4;
}

.visa-requirements li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2rem;
}

.saldo-info {
  background: #fff3cd;
  padding: 20px;
  border-radius: 0;

  border-left: 4px solid #ffc107;
  margin-top: 15px;
}

.saldo-info p {
  margin: 0;
  color: #856404;
  font-size: 0.85rem;
  font-weight: 600;
}

.visa-notes {
  margin-top: 40px;
  display: grid;
  width: 95%;
  margin: 0 auto;
  gap: 20px;
}

.special-note {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
  padding: 20px;
  border-radius: 0;

  line-height: 1.4;
  border-left: 5px solid #4caf50;
}

.special-note h4 {
  color: #2e7d32;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.special-note p {
  color: #388e3c;
  margin: 0;
  line-height: 1.5;
}

.important-note {
  background: #ffebee;
  padding: 20px;
  border-radius: 0;

  border-left: 5px solid #f44336;
  text-align: left;
}

.important-note p {
  color: #c62828;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

.contact {
  padding: 80px 0;
  background: #fff;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: black;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.contact-card {
  color: white;
  padding: 25px;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card.variant-1 {
  background: #3c8dbc;
  box-shadow: 0 8px 25px rgba(86, 171, 47, 0.25);
}

.contact-card.variant-2 {
  background: #d81b60;
  box-shadow: 0 8px 25px rgba(214, 69, 69, 0.25);
}

.contact-card.variant-3 {
  background: #6610f2;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.25);
}

.contact-card.variant-1:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: white;
  filter: brightness(1.1);
  animation: zoomInOut 1.5s ease-in-out infinite;
}

.contact-card.variant-1:hover img {
  animation: imageZoom 2s ease-in-out infinite;
}

.contact-card.variant-1:hover h3 {
  animation: textPulse 1s ease-in-out infinite alternate;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: translateY(-8px) scale(1.03);
  }
  50% {
    transform: translateY(-8px) scale(1.08);
  }
}

@keyframes imageZoom {
  0%,
  100% {
    transform: scale(1.05) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
}

@keyframes textPulse {
  0% {
    transform: scale(1.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: scale(1.2);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
  }
}

.contact-card.variant-2:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: white;
  filter: brightness(1.1);
  animation: imageBounce 1s ease-in-out infinite;
}

.contact-card.variant-2:hover img {
  animation: imageBounce 1s ease-in-out infinite;
}

.contact-card.variant-2:hover h3 {
  animation: textWiggle 0.8s ease-in-out infinite;
}

.contact-card.variant-2:hover .phone {
  animation: phoneShake 0.6s ease-in-out infinite;
}

@keyframes bounceUpDown {
  0%,
  100% {
    transform: translateY(-8px) scale(1.03);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

@keyframes imageBounce {
  0%,
  100% {
    transform: translateY(0) scale(1.05);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}

@keyframes textWiggle {
  0%,
  100% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1.15) rotate(-2deg);
  }
  75% {
    transform: scale(1.15) rotate(2deg);
  }
}

@keyframes phoneShake {
  0%,
  100% {
    transform: scale(1.05) translateX(0);
  }
  25% {
    transform: scale(1.08) translateX(-2px);
  }
  75% {
    transform: scale(1.08) translateX(2px);
  }
}

.contact-card.variant-3:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: white;
  filter: brightness(1.1);
  animation: fadeGlow 2s ease-in-out infinite;
}

.contact-card.variant-3:hover img {
  animation: imageGlow 1.8s ease-in-out infinite;
}

.contact-card.variant-3:hover h3 {
  animation: textGlow 1.5s ease-in-out infinite alternate;
}

.contact-card.variant-3:hover .phone {
  animation: phonePulse 1s ease-in-out infinite alternate;
}

@keyframes fadeGlow {
  0%,
  100% {
    transform: translateY(-8px) scale(1.03);
    filter: brightness(1.1);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(102, 16, 242, 0.5));
  }
}

@keyframes imageGlow {
  0%,
  100% {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 24px rgba(102, 16, 242, 0.6));
  }
}

@keyframes textGlow {
  0% {
    transform: scale(1.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: scale(1.15);
    text-shadow: 0 4px 16px rgba(102, 16, 242, 0.8);
  }
}

@keyframes phonePulse {
  0% {
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  }
}

.contact-card:hover > div:last-child {
  transform: translateY(-2px);
  font-weight: 600;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-card .phone {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}

footer {
  background: #b0c4de;
  color: black;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: black;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  padding: 5px 0;
}

.footer-section ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  color: black;
}

@media (max-width: 768px) {
  .company-title {
    font-size: 2rem;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .section-wrapper {
    margin: 10px;
    padding: 40px 20px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    overflow: hidden;
  }

  .hero {
    padding: 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-info {
    text-align: center;
  }

  .container {
    padding: 0 10px;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    width: 100%;
    padding: 30px;
    margin-bottom: 25px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    width: 100%;
    margin-bottom: 25px;
  }

  .passport-grid,
  .visa-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .document-card {
    width: 100%;
    margin-bottom: 25px;
  }
  .cta-button {
    margin-left: 20px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-cta h3 {
    font-size: 1.5rem;
  }

  .article-cta p {
    font-size: 1rem;
    margin-left: 50px;
  }
}

@media (max-width: 480px) {
  .company-title {
    font-size: 1.8rem;
  }

  .section-wrapper {
    margin: 5px;
    padding: 30px 15px;
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
  }

  .cta-button {
    margin-left: 25px;
  }

  .hero {
    padding: 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .services h2,
  .destinations h2,
  .contact h2 {
    font-size: 2rem;
  }

  .passport-grid,
  .visa-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 10px;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    width: 100%;
    padding: 20px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    width: 100%;
    margin-bottom: 15px;
  }

  .passport-grid,
  .visa-grid {
    grid-template-columns: 1fr;
  }

  .document-card {
    width: 100%;
  }
}

.service-header {
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.service-section {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  color: #6e48aa;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.vehicle-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
}

.vehicle-image {
  height: 180px;
  background-color: #eee;
  background-image: url("https://via.placeholder.com/500x300?text=Bus+Pariwisata");
  background-size: cover;
  background-position: center;
}

.vehicle-content {
  padding: 20px;
}

.vehicle-title {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.vehicle-features {
  margin: 15px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.feature-icon {
  margin-right: 8px;
  color: #6e48aa;
}

.price-tag {
  font-weight: bold;
  color: #6e48aa;
  font-size: 1.2rem;
  margin: 15px 0;
}

.cta-button {
  display: inline-block;
  background: #6e48aa;
  color: redwhitere;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.cta-button:hover {
  background: #9d50bb;
}

.articles {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.articles h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.article-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-image {
  height: 220px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.article-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
}

.article-content p {
  color: #555;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
  margin-top: auto;
}

.read-more:hover {
  color: white;
  text-decoration: none;
  background: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.article-cta {
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  color: white;
  padding: 30px;
  border-radius: 0;
  text-align: center;
  margin-top: 50px;
}

.article-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.article-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.article-cta .cta-button {
  display: block;
  margin: 20px auto;
  width: 90%;
  max-width: 300px;
  text-align: center;
  padding: 12px 20px;
  font-size: 1rem;
  background: white;
  color: #6e48aa;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(110, 72, 170, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.article-cta .cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(110, 72, 170, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.article-cta .cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

.article-cta .cta-button:hover,
.article-cta .cta-button.pulse {
  animation: yellowPulse 1.5s infinite;
  background: #fffece !important;
  color: #333 !important;
  box-shadow: 0 0 0 0 rgba(255, 221, 51, 0.7);
  border: none;
}

@keyframes yellowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 221, 51, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 221, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 221, 51, 0);
  }
}

.article-cta .cta-button.gradient {
  background: linear-gradient(135deg, #6e48aa, #9b59b6);
  color: white;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.article-cta .cta-button.gradient:hover {
  background: linear-gradient(135deg, #5a3d8a, #8e44ad);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.article-cta .cta-button.border-animate {
  background: transparent;
  border: 2px solid #6e48aa;
  color: #6e48aa;
  position: relative;
}

.article-cta .cta-button.border-animate::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #6e48aa, #9b59b6, #6e48aa, #9b59b6);
  border-radius: 8px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: rotate 3s linear infinite;
}

.article-cta .cta-button.border-animate:hover::before {
  opacity: 1;
}

.article-cta .cta-button.border-animate:hover {
  background: white;
  color: #5a3d8a;
  border-color: transparent;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.article-cta .cta-button.loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

.article-cta .cta-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #6e48aa;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 3;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.article-cta .cta-button.magnetic {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-cta .cta-button.magnetic:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(110, 72, 170, 0.4);
}

.article-cta .cta-button.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article-cta .cta-button.with-icon .icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.article-cta .cta-button.with-icon:hover .icon {
  transform: translateX(5px);
}

@keyframes yellowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 221, 51, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 221, 51, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 221, 51, 0);
  }
}

.article-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.article-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.article-modal-content {
  background: white;
  max-width: 90%;
  max-height: 90%;
  width: 800px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-modal.active .article-modal-content {
  transform: scale(1) translateY(0);
}

.article-modal-close {
  position: absolute;
  top: 40px;
  right: 30px;
  color: #222;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin: 0;
  padding-bottom: 5px;
  z-index: 20;
}

.article-modal-close:hover {
  background: #ff0000;
  color: #fff;
}

.article-modal-header {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.article-modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.article-modal-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
}

.article-modal-meta h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.article-modal-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.article-modal-body {
  padding: 30px;
  max-height: 400px;
  overflow-y: auto;
  line-height: 1.8;
  color: #333;
  scrollbar-width: thin;
  scrollbar-color: #007bff #f0f0f0;
  position: relative;
}

.article-modal-body.loading::before {
  content: "Memuat artikel...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-style: italic;
  z-index: 10;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.article-modal-body.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 5;
}

.article-modal-body::-webkit-scrollbar {
  width: 8px;
}

.article-modal-body::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.article-modal-body::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 4px;
}

.article-modal-body::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

.article-modal-body h3 {
  color: #007bff;
  margin: 20px 0 15px 0;
  font-size: 1.3rem;
}

.article-modal-body p {
  margin-bottom: 15px;
  text-align: justify;
}

.article-modal-body ul {
  margin: 15px 0;
  padding-left: 20px;
}

.article-modal-body li {
  margin-bottom: 8px;
}

.article-modal-footer {
  padding: 20px 30px 30px;
  text-align: center;
  border-top: 1px solid #eee;
}

.article-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.share-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .article-modal-content {
    width: 95%;
    max-height: 95%;
  }

  .article-modal-header {
    height: 200px;
  }

  .article-modal-meta h2 {
    font-size: 1.4rem;
  }

  .article-modal-body {
    padding: 20px;
    max-height: 300px;
  }

  .article-modal-footer {
    padding: 15px 20px 20px;
  }

  .article-actions {
    flex-direction: column;
    gap: 15px;
  }

  .read-more {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .article-modal-content {
    width: 98%;
    max-height: 98%;
  }

  .article-modal-header {
    height: 150px;
  }

  .article-modal-meta h2 {
    font-size: 1.2rem;
  }

  .article-modal-body {
    padding: 15px;
    max-height: 250px;
  }

  .article-modal-footer {
    padding: 10px 15px 15px;
  }

  .article-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
  width: 100%;
  padding: 0;
  align-items: stretch;
}

.instagram-photo {
  height: 100%;
  min-height: 320px;
  margin: 0;
  padding: 8px;
  display: flex;
  align-items: stretch;
}

.instagram-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.instagram-photo img:hover {
  cursor: zoom-in;
  filter: brightness(0.92);
  transform: scale(1.02);
}
@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .article-modal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .article-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-button {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (min-width: 601px) {
  .read-more {
    height: 48px;
    min-width: 180px;
    font-size: 1.1rem;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-title {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.hero-title .hero-icon {
  width: 50px;
  height: 50px;
  max-width: 12vw;
  max-height: 12vw;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .hero-title .hero-icon {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
  .hero-title {
    font-size: 1.2rem;
    gap: 10px;
  }
}

.cta-button.responsive {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px auto;
  display: block;
  font-size: 1.1rem;
  padding: 14px 0;
  text-align: center;
}
@media (max-width: 600px) {
  .cta-button.responsive {
    font-size: 1.25rem;
    padding: 16px 0;
    max-width: 100%;
    margin: 0 auto 18px auto;
    text-align: center;
  }
}

.articles-grid .article-image img {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
}
@media (max-width: 600px) {
  .payment-info {
    display: flex;
    flex-direction: column;
  }
  .payment-title {
    order: 1;
    width: 100%;
  }
  .payment-content {
    order: 2;
    width: 100%;
    flex-direction: column !important;
  }
}
