@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Poppins:wght@700;800&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #3a5eff 0%, #1e2a78 100%);
  min-height: 100vh;
}

.header {
  background: #6ea0ff;
  color: #fff;
  padding: 0 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 30px;
  letter-spacing: 2px;
}
.logo img {
  height: 38px;
  margin-right: 10px;
}
/* Navbar rata tengah dan responsif */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-right: 0;
  margin-left: 0;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.navbar a:hover, .navbar .active {
  background: #ff2d2d;
  color: #fff;
}
.navbar a.active {
  background: #ff2d2d;
  color: #fff;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255,45,45,0.12);
}
.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
}
.user-info .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #3a5eff;
  box-shadow: 0 2px 8px rgba(30,42,120,0.10);
  overflow: hidden;
  margin-right: 4px;
  position: relative;
}
.user-info .avatar img, .user-info .avatar svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.user-info .username {
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
  margin-right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.user-info .btn {
  background: #fff;
  color: #1e2a78;
  padding: 4px 16px;
  font-size: 1em;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  margin-left: 0;
  margin-right: 4px;
  box-shadow: 0 1px 4px rgba(30,42,120,0.08);
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  outline: none;
}
.user-info .btn:hover {
  background: #3a5eff;
  color: #fff;
}
.user-info .btn:last-child {
  color: #fff;
  background: #c00;
  border: none;
  margin-right: 0;
}
.user-info .btn:last-child:hover {
  background: #1e2a78;
  color: #fff;
}
.user-info .icon-profile {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  color: #ffe600;
  font-size: 1.2em;
}

.hero {
  background: linear-gradient(90deg,rgba(30,42,120,0.7),rgba(30,42,120,0.3)), url('../assets/images/angMansion.jpg') center/cover no-repeat;
  color: #ffe600;
  text-align: center;
  padding: 100px 0 60px 0;
  font-size: 2.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero span:first-child {
  color: #ffe600;
  font-size: 1.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: none;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-fill-color: initial;
}
.hero .subtitle {
  color: #fff;
  font-size: 1.1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  margin-top: 10px;
  text-shadow: none;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 700px) {
  .hero {
    font-size: 1.2em;
    padding: 60px 0 30px 0;
    min-height: 180px;
  }
  .hero .subtitle {
    font-size: 1em;
  }
}

.section {
  margin: 40px auto;
  max-width: 1100px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 32px 24px;
}
.section-title {
  color: #1e2a78;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 18px 18px 24px 18px;
  width: 260px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid #e0e0e0;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30,42,120,0.13);
  border-color: #6ea0ff;
}
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.card .card-title {
  font-size: 1.2em;
  font-weight: 700;
  color: #c00;
  margin-bottom: 6px;
}
.card .card-price {
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  background: #c00;
  border-radius: 6px;
  padding: 4px 0;
  margin-bottom: 8px;
}
.card .card-stock {
  color: #1e2a78;
  font-size: 1em;
  margin-bottom: 10px;
}
.card .btn {
  background: #1e2a78;
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.card .btn:hover {
  background: #ff2d2d;
}

.form-reservasi {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 18px 24px;
  max-width: 700px;
}
.form-reservasi input, .form-reservasi select {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #b0b0b0;
  font-size: 1em;
  margin-right: 8px;
}
.form-reservasi button {
  background: #c00;
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.form-reservasi button:hover {
  background: #1e2a78;
}

.section-map {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 24px;
  margin: 40px auto;
  max-width: 1100px;
  text-align: center;
}

.footer {
  background: #c00;
  color: #fff;
  text-align: center;
  padding: 16px 0 10px 0;
  font-size: 1em;
  letter-spacing: 1px;
  margin-top: 40px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.section p {
  text-align: justify;
}

/* FORM LOGIN & REGISTER MODERN */
/* Form auth container agar selalu di tengah dan rapi */
.form-auth-container {
  max-width: 400px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,42,120,0.10);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-auth-container .logo {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.form-auth-container .logo img {
  height: 32px;
  margin-right: 8px;
}
.form-auth-container h2 {
  color: #1e2a78;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
/* Form Auth Modern Rapi */
.form-auth-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-auth-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.form-auth-row label {
  width: 110px;
  font-weight: 600;
  color: #1e2a78;
  font-size: 1em;
  margin-bottom: 0;
  text-align: right;
}
.form-auth-row input[type="text"],
.form-auth-row input[type="email"],
.form-auth-row input[type="password"] {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #e0eaff;
  background: #f4f8ff;
  font-size: 1em;
  margin-bottom: 0;
  transition: border 0.2s;
}
.form-auth-container input:focus {
  border: 1.5px solid #3a5eff;
  outline: none;
}
.form-auth-container .btn {
  width: 100%;
  background: linear-gradient(90deg, #3a5eff 0%, #1e2a78 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1em;
  margin-top: 8px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(30,42,120,0.10);
}
.form-auth-container .btn:hover {
  background: linear-gradient(90deg, #1e2a78 0%, #3a5eff 100%);
}
.form-auth-container .alert {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1em;
  text-align: center;
}
@media (max-width: 600px) {
  .form-auth-container {
    max-width: 98vw;
    padding: 16px 4vw 16px 4vw;
  }
  .navbar {
    flex-direction: column;
    gap: 8px;
    margin-right: 0;
    margin-left: 0;
  }
  .form-auth-row {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .form-auth-row label {
    width: 100%;
    text-align: left;
    margin-bottom: 2px;
  }
}

@media (max-width: 700px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    gap: 8px;
  }
  .logo {
    margin-left: 0;
    font-size: 1.1em;
    justify-content: center;
  }
  .navbar {
    flex-direction: column;
    gap: 8px;
    margin-right: 0;
    align-items: center;
    width: 100%;
    padding: 0 0 8px 0;
  }
  .user-info {
    margin-left: 0;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero {
    font-size: 1.1em;
    padding: 40px 0 18px 0;
    min-height: 120px;
  }
  .section, .section-map {
    padding: 8px 2px;
    margin: 18px 0;
    max-width: 99vw;
    border-radius: 10px;
  }
  .section-title {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  .card-list {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .card {
    width: 98vw;
    min-width: 0;
    padding: 10px 6px 16px 6px;
    font-size: 0.98em;
  }
  .form-reservasi, .form-informasi {
    flex-direction: column;
    gap: 10px;
    padding: 10px 4px;
    max-width: 99vw;
  }
  .form-reservasi input, .form-reservasi select, .form-reservasi button,
  .form-informasi input, .form-informasi textarea, .form-informasi button {
    width: 100%;
    font-size: 1em;
    box-sizing: border-box;
  }
  .footer-dark-main {
    flex-direction: column;
    gap: 32px;
    padding: 24px 2vw 12px 2vw;
    align-items: stretch;
  }
  .footer-dark-col {
    min-width: 0;
    width: 100%;
    margin-bottom: 12px;
  }
  .footer-dark-logo {
    font-size: 1.1em;
  }
  .footer-dark-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 8px 2vw 6px 2vw;
    text-align: center;
    font-size: 0.93em;
  }
  .footer-dark-links a {
    margin-left: 8px;
    margin-right: 8px;
  }
}

@media (max-width: 900px) {image.png
  .card-list { flex-direction: column; align-items: center; }
  .form-reservasi { flex-direction: column; gap: 10px; }
  .section, .section-map { padding: 18px 6px; }
}

@media (max-width: 600px) {
  .header { flex-direction: column; height: auto; padding: 10px 0; }
  .logo { margin-left: 0; }
  .navbar { flex-direction: column; gap: 8px; margin-right: 0; }
  .user-info { margin-left: 0; }
  .section, .section-map { padding: 8px 2px; }
} 

.footer-multicol {
  display: flex;
  justify-content: center;
  gap: 60px;
  background: #fff;
  padding: 48px 10vw 28px 10vw;
  border-top: 1.5px solid #eee;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 -2px 16px rgba(30,42,120,0.07);
}
.footer-col {
  flex: 1 1 180px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-title {
  font-weight: 700;
  font-size: 1.15em;
  color: #232b3e;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer-col a {
  color: #232b3e;
  text-decoration: none;
  font-size: 1em;
  margin-bottom: 2px;
  transition: color 0.18s;
  font-weight: 500;
}
.footer-col a:hover {
  color: #3a5eff;
  text-decoration: underline;
}
.footer-contact {
  color: #232b3e;
  font-size: 1em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-social {
  margin-top: 8px;
  display: flex;
  gap: 14px;
}
.footer-social a {
  color: #232b3e;
  transition: color 0.18s;
  font-size: 1.2em;
}
.footer-social a:hover {
  color: #3a5eff;
}
@media (max-width: 900px) {
  .footer-multicol {
    flex-direction: column;
    gap: 24px;
    padding: 28px 4vw 12px 4vw;
    border-radius: 0;
  }
  .footer-col {
    min-width: 0;
  }
} 

.form-informasi {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,42,120,0.08);
  padding: 24px 20px 20px 20px;
  margin: 0 auto;
  max-width: 420px;
}
.form-informasi input[type="text"],
.form-informasi input[type="email"],
.form-informasi textarea {
  padding: 10px 12px;
  font-size: 1.08em;
  border-radius: 7px;
  border: 1.5px solid #b0b0b0;
  background: #f7f9fc;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-informasi input:focus,
.form-informasi textarea:focus {
  border: 1.5px solid #3a5eff;
  box-shadow: 0 0 0 2px #3a5eff33;
}
.form-informasi button {
  background: linear-gradient(90deg, #3a5eff 60%, #1e2a78 100%);
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,42,120,0.10);
  margin-top: 6px;
}
.form-informasi button:hover {
  background: linear-gradient(90deg, #1e2a78 60%, #3a5eff 100%);
  box-shadow: 0 4px 16px rgba(30,42,120,0.13);
} 

.footer-dark {
  background: linear-gradient(135deg, #3a5eff 0%, #1e2a78 100%) !important;
  color: #fff !important;
  margin-top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  padding-top: 0;
  border-top: 4px solid #ffe600;
}
.footer-dark a, .footer-dark-links a {
  color: #e0e0e0 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-dark a:hover, .footer-dark-links a:hover {
  color: #e9b6c1 !important;
  text-decoration: underline;
}
.footer-dark-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 48px 8vw 24px 8vw;
  flex-wrap: wrap;
}
.footer-dark-col {
  flex: 1 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-dark-col.brand {
  max-width: 260px;
}
.footer-dark-logo {
  font-size: 2em;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-dark-logo span {
  color: #e9b6c1;
  font-size: 1.1em;
}
.footer-dark-desc {
  color: #e0e0e0;
  font-size: 1.08em;
  margin-bottom: 8px;
}
.footer-dark-title {
  font-weight: 700;
  font-size: 1em;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.footer-dark-form {
  display: flex;
  gap: 0;
  margin-top: 4px;
}
.footer-dark-form input[type="email"] {
  padding: 10px 14px;
  font-size: 1em;
  border: 1.5px solid #444;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: #23232b;
  color: #fff;
  width: 180px;
}
.footer-dark-form input[type="email"]::placeholder {
  color: #aaa;
}
.footer-dark-form button {
  background: #e9b6c1;
  color: #23232b;
  border: none;
  padding: 10px 22px;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.footer-dark-form button:hover {
  background: #fff;
  color: #23232b;
}
.footer-dark-social {
  display: flex;
  gap: 16px;
  margin-top: 2px;
}
.footer-dark-social a {
  color: #fff;
  font-size: 1.7em;
  transition: color 0.18s, transform 0.18s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-dark-social a:hover {
  color: #ffe600;
  transform: scale(1.22) rotate(-6deg);
}
.footer-dark-call {
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
}
.footer-dark-bottom {
  border-top: 1px solid #444;
  margin-top: 24px;
  padding: 18px 8vw 8px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.98em;
  color: #e0e0e0;
}
.footer-dark-links a {
  color: #e0e0e0;
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-dark-links a:hover {
  color: #e9b6c1;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-dark-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 4vw 18px 4vw;
    align-items: stretch;
  }
  .footer-dark-col {
    min-width: 0;
    width: 100%;
    margin-bottom: 12px;
  }
  .footer-dark-logo {
    font-size: 1.4em;
  }
  .footer-dark-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 12px 4vw 8px 4vw;
    text-align: center;
    font-size: 0.95em;
  }
  .footer-dark-links a {
    margin-left: 10px;
    margin-right: 10px;
  }
} 

/* Flex container untuk navbar dan userbar agar tidak overlap */
.header-right {
  display: unset;
  align-items: unset;
  gap: unset;
}
@media (max-width: 700px) {
  .header-right {
    flex-direction: unset;
    gap: unset;
    width: unset;
    align-items: unset;
  }
  .navbar, .userbar-flex {
    width: unset;
    justify-content: unset;
  }
}

/* Userbar wrapper agar user-info tidak keluar jalur */
.userbar-flex {
  display: unset;
  align-items: unset;
  justify-content: unset;
  flex: unset;
  min-width: unset;
  margin-right: unset;
}
@media (max-width: 700px) {
  .userbar-flex {
    justify-content: unset;
    margin-right: unset;
    width: unset;
    padding-bottom: unset;
  }
} 

/* Grid modern untuk kamar */
.kamar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 18px;
}
.card-kamar-modern {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(30,42,120,0.10);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.card-kamar-modern:hover {
  box-shadow: 0 8px 32px rgba(30,42,120,0.18);
  transform: translateY(-4px) scale(1.02);
}
.kamar-img-preview {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.kamar-img-thumb {
  width: 100%;
  max-width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30,42,120,0.08);
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s;
}
.kamar-img-thumb:hover {
  box-shadow: 0 4px 18px rgba(30,42,120,0.18);
  transform: scale(1.04);
}
.card-kamar-modern .card-title {
  color: #1e2a78;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 2px;
  text-align: center;
}
.card-kamar-modern .card-type {
  color: #3a5eff;
  font-size: 1em;
  margin-bottom: 2px;
  text-align: center;
}
.card-kamar-modern .card-price {
  color: #c00;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}
.card-kamar-modern .card-stock {
  color: #1e2a78;
  font-size: 0.98em;
  margin-bottom: 8px;
  text-align: center;
}
.card-fasilitas {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}
.card-fasilitas li {
  color: #333;
  font-size: 0.98em;
  background: #f2f7ff;
  border-radius: 6px;
  padding: 3px 10px 3px 7px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fas-icon {
  color: #3a5eff;
  font-size: 1.1em;
}
.card-fasilitas-empty {
  color: #888;
  font-size: 0.98em;
  margin-bottom: 10px;
  text-align: center;
}
/* Lightbox kamar */
.lightbox-kamar {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30,42,120,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(30,42,120,0.25);
  background: #fff;
}
.lightbox-close {
  color: #fff;
  font-size: 2.2em;
  font-weight: bold;
  position: absolute;
  top: 32px;
  right: 48px;
  cursor: pointer;
  z-index: 10001;
  text-shadow: 0 2px 8px #000;
}
@media (max-width: 700px) {
  .kamar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-kamar-modern {
    padding: 12px 4px 12px 4px;
  }
  .kamar-img-thumb {
    max-width: 98vw;
    height: 120px;
  }
  .lightbox-close {
    top: 12px;
    right: 18px;
    font-size: 1.5em;
  }
} 

.facility-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,42,120,0.08);
  width: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
} 

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #e3ebff 0%, #b3cfff 100%);
  margin: 0;
  padding: 0;
}
.profile-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.10);
  padding: 36px 36px 28px 36px;
  max-width: 700px;
  margin: 32px auto 0 auto;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-title {
  color: #2563eb;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.5px;
}
.profile-form label {
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 6px;
  display: block;
}
.profile-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dbeafe;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 1em;
  background: #f4f8ff;
  transition: border 0.2s;
}
.profile-form .form-control:focus {
  border: 1.5px solid #2563eb;
  outline: none;
  background: #fff;
}
.profile-form .btn, .profile-form button[type=submit] {
  width: 100%;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 0;
  margin-bottom: 8px;
  background: #2563eb;
  color: #fff;
  border: none;
  font-size: 1.1em;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
.profile-form .btn:hover, .profile-form button[type=submit]:hover {
  background: #174ea6;
}
.profile-form .btn-warning {
  background: #fbbf24;
  color: #1e2a78;
}
.profile-form .btn-warning:hover {
  background: #f59e0b;
}
.profile-form .btn-primary {
  background: #2563eb;
  color: #fff;
}
.profile-form .btn-primary:hover {
  background: #174ea6;
}
.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #2563eb;
  background: #e0e7ff;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}
.profile-card input[type="file"] {
  margin-bottom: 12px;
}
.profile-card .btn-upload {
  background: #38bdf8;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  width: 100%;
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.profile-card .btn-upload:hover {
  background: #0ea5e9;
}
@media (max-width: 800px) {
  .profile-card {
    padding: 18px 8px 18px 8px;
    max-width: 98vw;
  }
  .profile-title {
    font-size: 1.3em;
  }
  .profile-avatar {
    width: 70px;
    height: 70px;
  }
} 

body {
  background: #7b6cf6;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.profile-main-container {
  max-width: 1100px;
  margin: 32px auto 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.profile-left-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,42,120,0.13);
  padding: 32px 24px 24px 24px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-avatar-big {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e0e7ef;
  background: #f3f4f6;
  margin-bottom: 16px;
}
.profile-left-card .profile-name {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 4px;
  color: #2d2d2d;
}
.profile-left-card .profile-info {
  color: #555;
  font-size: 0.98em;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-left-card .profile-location {
  color: #888;
  font-size: 0.95em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-left-card .profile-upload-btn {
  background: #f3f4f6;
  border: 1.5px dashed #7b6cf6;
  color: #7b6cf6;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.profile-left-card .profile-upload-btn:hover {
  background: #ede9fe;
}
.profile-left-card .btn-upload {
  background: #00c3ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  width: 100%;
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.profile-left-card .btn-upload:hover {
  background: #0099cc;
}
.profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.profile-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,42,120,0.13);
  padding: 28px 32px 24px 32px;
  margin-bottom: 0;
}
.profile-title {
  color: #7b6cf6;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-form label {
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
  display: block;
}
.profile-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e0e7ef;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 1em;
  background: #f9fbff;
  transition: border 0.2s;
}
.profile-form .form-control:focus {
  border: 1.5px solid #7b6cf6;
  outline: none;
  background: #fff;
}
.profile-form .btn {
  width: 100%;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 0;
  margin-bottom: 8px;
  background: #7b6cf6;
  color: #fff;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}
.profile-form .btn:hover {
  background: #5f4bb6;
}
.profile-form .btn-pink {
  background: #f472b6;
  color: #fff;
}
.profile-form .btn-pink:hover {
  background: #be185d;
}
.profile-form .btn-upload {
  background: #00c3ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  width: 100%;
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.profile-form .btn-upload:hover {
  background: #0099cc;
}
.profile-header {
  background: #8f82ff;
  border-radius: 16px;
  margin: 32px auto 24px auto;
  max-width: 1100px;
  padding: 24px 0 12px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 12px rgba(30,42,120,0.10);
  border: 2px solid #bcb3f7;
}
.profile-header .profile-header-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.profile-header .profile-header-desc {
  font-size: 1.05em;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .profile-main-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .profile-left-card {
    width: 100%;
    margin-bottom: 0;
  }
  .profile-content {
    gap: 18px;
  }
} 

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
}
.footer-left {
    flex: 1;
    min-width: 200px;
}
.footer-right {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 900px) {
  .footer-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-right { align-items: flex-start; margin-top: 20px; }
} 