/* Reset dan Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
  color: #007bff;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

.head {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 3rem;
}

.title {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.5rem;
  font-size: 1.05rem;
  color: #f79f07;
  font-weight: 300;
}

/* Layout - Mengatur struktur dasar halaman */
.container {
  display: flex;
  height: 100vh;
  position: relative;
}

/* Navigation Components - Tombol menu dan navigasi */
.nav-toggle {
  position: absolute;
  left: 5%;
  top: 10%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  border: 0;
  border-radius: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url("assets/navicon-light.png") center/35px no-repeat;
  transition: all 0.5s ease;
  display: block;
}

.nav-toggle.active {
  background: url("assets/close-light.png") center/35px no-repeat;
  left: 45%;
}

.slide-menu {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background: #000000;
  transition: all 0.5s ease;
  z-index: 999;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.slide-menu.active {
  left: 0;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-items li {
  margin-bottom: 0.5rem;
}

.menu-items a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.menu-items a:hover {
  color: #ccc;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  padding: 1rem;
  z-index: 1001;
  border-bottom: 0.5px solid #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.mobile-nav-list {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
  display: flex;

  align-items: center;
}

.mobile-nav-list li {
  position: relative;
}

.mobile-nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 1.2px;
  transition: color 0.3s ease;
  padding: 0.5rem;
  display: block;
}

.mobile-nav-list li a.menu-icon {
  width: 24px;
  height: 24px;
  background: url("assets/navicon-light.png") center/contain no-repeat;
  transition: opacity 0.3s ease;
}

.mobile-nav-list li a.menu-icon:hover {
  opacity: 0.7;
}

.mobile-nav-list .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.98);
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1002;
  border: 1px solid #333333;
}

.mobile-nav-list .dropdown-content a {
  color: #e0e0e0;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.85rem;
}

.mobile-nav-list .dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mobile-nav-list li:hover .dropdown-content {
  display: block;
}

.mobile-nav-list li a:hover {
  color: #ffffff;
}

/* Sidebar Components */
.left-sidebar {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.right-sidebar {
  width: 50%;
  height: 100vh;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  background: #000000; /* Background Sidebar Kanan */
}

/* Content Components */
.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Heading dan Paragraf dalam Content Overlay */
.content-overlay h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.2;
}

.content-overlay p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  max-width: 800px;
  line-height: 1.7;
  color: #cccccc;
}

.line-1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid gray; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.01em; /* Adjust as needed */
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 4.8em;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: gray;
  }
}

/* Video Components */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(40, 40, 40, 0.3) 2px, transparent 2px),
    linear-gradient(90deg, rgba(40, 40, 40, 0.3) 2px, transparent 2px);
  background-position: 0 0;
  background-size: 3px 3px;
  background-repeat: repeat;
  background-color: rgba(40, 40, 40, 0.5);
  background-blend-mode: multiply;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(204, 204, 204, 0.3) 2px,
      transparent 2px
    ),
    linear-gradient(90deg, rgba(204, 204, 204, 0.3) 2px, transparent 2px);
  background-position: 0 0;
  background-size: 5px 5px;
  background-repeat: repeat;
  background-color: rgba(204, 204, 204, 0.5);
  background-blend-mode: multiply;
  z-index: 1;
}

/* Gallery Components */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #000;
  padding: 0;
}

.gallery a {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery img:hover {
  transform: scale(1.15);
}

.gallery a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
}

.gallery a:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  z-index: 1000;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success Message */
.success-message {
  background-color: #4caf50;
  color: white;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error Message */
.error-message {
  background-color: #ff4444;
  color: white;
  padding: 8px;
  margin-top: 4px;
  border-radius: 4px;
  font-size: 0.8rem;
  animation: fadeIn 0.3s ease-in;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Card Content */
.content-section {
  border-bottom: 0;
  padding: 20px;
}

.section-inner {
  padding: 0;
}

.section-inner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.card {
  background: #1a1a1a;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 168, 168, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  overflow: hidden;

}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Card Hover Effects - Efek saat card dihover */
.card:hover .card-image img {
  transform: scale(1.2);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

/* Card Typography - Pengaturan teks dalam card */
.card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0 1.5rem 0 1.5rem;
  line-height: 1.3;
}

.card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #faaa09;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0 1.5rem 0 1.5rem;
  line-height: 1.3;
}

.card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-weight: 400;
  padding: 0 1.5rem 1rem 1.5rem;
}

.card ul {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-weight: 400;
  padding-left: 2.5rem;	
}

.card-bottom {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: block;
  padding: 0 1.5rem 0 1.5rem;
}

/* Button Styles - Gaya tombol dalam card */
.read-more-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: #444;
  color: #ccc;
  border: 2px solid #555;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin: 0 0 1.5rem 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  filter: grayscale(100%);
}

.read-more-btn:hover {
  background: #333333;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(51, 51, 51, 0.2);
  filter: grayscale(0%);
}

/* PROGRESS */
.skills-container {
  margin: 0 1.5rem;
}

.skill {
  margin-bottom: 1.5rem;
}

.skill-name {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.1);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.progress {
  background: #ffffff;
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease-in-out;
  animation: progressAnimation 1s ease-out;
}

.skill-percentage {
  text-align: right;
  font-size: 0.9em;
  color: #ffffff;
}

@keyframes progressAnimation {
  0% {
    width: 0;
  }
}

/* Form Styles */
.form-group {
  margin: 1.5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 4px;
  color: #ccc;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #444444;
  background: #2a2a2a;
  box-shadow: 0 0 0 2px rgba(68, 68, 68, 0.2);
  color: #ffffff;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #444444;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-group input[type="datetime-local"] {
  color-scheme: white;
  color: #ccc;
}

.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  opacity: 0.8;
  cursor: pointer;
}

.form-group
  input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.submit-btn {
  width: auto;
  padding: 12px;
  background: #333333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  filter: grayscale(0%);
  margin: 0 1.5rem 1.5rem 1.5rem;
}

.submit-btn:hover {
  background: #444444;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 42, 42, 0.2);
  filter: grayscale(0%);
}

.submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: #2a2a2a;
}

.submit-btn.loading {
  background: #555;
  pointer-events: none;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
  to {
    transform: rotate(360deg);
  }
}

.submit-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(51, 51, 51, 0.2);
}

/* Sponsor Section Styles */
.sponsor-section {
  padding: 2rem 1.5rem;
  background: #000000;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}

.sponsor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Footer Styles - Gaya footer */
.footer {
  background: #000000;
  color: #ccc;
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.footer p {
  margin: 0;
  opacity: 0.9;
}

/* Responsive Styles - Pengaturan tampilan responsif */
@media (max-width: 1024px) {
  .container {
    height: 100vh;
  }

  .left-sidebar {
    width: 60%;
    height: 100vh;
  }

  .right-sidebar {
    width: 40%;
    height: 100vh;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-overlay h1 {
    font-size: 2.75rem;
  }

  .content-overlay p {
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  z-index: 1000;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success Message */
.success-message {
  background-color: #4caf50;
  color: white;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Error Message */
.error-message {
  background-color: #ff4444;
  color: white;
  padding: 8px;
  margin-top: 4px;
  border-radius: 4px;
  font-size: 0.8rem;
  animation: fadeIn 0.3s ease-in;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-overlay h1 {
    font-size: 2.5rem;
  }

  .content-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .card h3 {
    font-size: 1.35rem;
  }

  .card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-sidebar {
    width: 100%;
    height: 100vh;
  }

  .right-sidebar {
    width: 100%;
    height: auto;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-overlay h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  .content-overlay p {
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .card h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.8rem;
    line-height: 1.5;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 12px 20px;
    letter-spacing: 0.02em;
  }
}

/* Mobile Styles - Pengaturan tampilan untuk perangkat mobile */
.mobile-nav-list li a.menu-icon {
  width: 24px;
  height: 24px;
  background: url("assets/navicon-light.png") center/contain no-repeat;
  transition: opacity 0.3s ease;
}

.mobile-nav-list li a.menu-icon:hover {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-sidebar {
    width: 100%;
    height: 100vh;
  }

  .right-sidebar {
    width: 100%;
    height: auto;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .footer {
    display: block;
  }

  .content-overlay {
    padding: 1.5rem;
  }

  .content-overlay h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .content-overlay p {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    max-width: 100%;
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}

.preloader.fade-out {
  opacity: 0;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid #e0e0e0;
  border-radius: 50%;
  border-top-color: #007bff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Social Media Section */
.social-media-section {
  padding: 2rem;
  background: #000000;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: #444;
  padding: 8px;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

@media (max-width: 480px) {
  .social-media-section {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #333333;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: #1a1a1a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  background: #222222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-item h4 {
  text-align: center;
}
.faq-item h5 {
  cursor: pointer;
  padding: 1.2rem 1rem;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
  color: #e0e0e0;
}

.faq-item h5::after {
  content: "+";
  font-size: 1.8rem;
  transition: all 0.4s ease;
  opacity: 0.8;
  color: #999999;
}

.faq-item.active h5::after {
  transform: rotate(45deg);
  opacity: 1;
  color: #e0e0e0;
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  margin: 0;
  padding: 0 1.5rem;
  color: #cccccc;
}

.faq-item.active p {
  max-height: 800px;
  opacity: 1;
  margin: 0.5rem 0 1.5rem;
  padding: 0 1.5rem;
}

/* BOOKING BUTTON */
.booking-btn {
  margin: 2rem auto;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  background: transparent;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .booking-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 480px) {
  .booking-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
}
.booking-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.4s ease;
  z-index: -1;
}
.booking-btn:hover {
  color: #1a1a1a;
}
.booking-btn:hover:before {
  left: 0;
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 0;
}

.carousel-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  z-index: 1;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: white;
}