* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #e5e7eb;
  line-height: 1.6;
  background: linear-gradient(135deg, #020617, #0f172a);
}

header {
  background: linear-gradient(135deg, #020617, #991b1b);
  color: white;
}

.top-bar {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 75px;      /* Bigger logo */
  max-width: 220px;  /* Prevents stretching */
  object-fit: contain;
}

.logo span {
  font-size: 18px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  color: #e5e7eb;
}

.btn {
  background: white;
  color: #991b1b;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 70px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

footer {
  background: #020617;
  color: #cbd5f5;
  padding: 30px;
  text-align: center;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.gallery-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    padding: 40px 15px;
    background: transparent;
  }
}
@keyframes logoFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo img {
  animation: logoFade 0.8s ease-in-out;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0f172a;
  transition: all 0.3s ease;
}

header.shrink .logo img {
  height: 55px;
}

.contact-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #475569;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  background: none;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 6px;
  color: #64748b;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
}

.form-group textarea + label {
  top: 18px;
  transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #2563eb;
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-info {
  background: #0f172a;
  color: white;
  padding: 50px;
  border-radius: 20px;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  color: #cbd5f5;
}

.contact-details p {
  margin: 10px 0;
}

.whatsapp-btn {
  display: inline-block;
  margin: 25px 0;
  background: #22c55e;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

#formMessage {
  margin-top: 15px;
  font-weight: 600;
}

.success {
  color: #16a34a;
}

.error {
  color: #dc2626;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  background: #f1f5f9;
  padding: 90px 20px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-left h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.contact-left p {
  color: #475569;
  margin-bottom: 30px;
}

.contact-box {
  background: white;
  padding: 25px;
  border-left: 4px solid #2563eb;
  margin-bottom: 30px;
}

.contact-box p {
  margin: 8px 0;
}

.contact-right {
  background: white;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.form-row {
  margin-bottom: 18px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
}

.contact-right textarea {
  height: 140px;
  resize: none;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #2563eb;
  outline: none;
}

#formMessage {
  margin-top: 15px;
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-luxury {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: 110px 20px;
  color: white;
}

.luxury-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.luxury-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #94a3b8;
}

.luxury-text h2 {
  font-size: 42px;
  margin: 15px 0 20px;
}

.luxury-text p {
  color: #cbd5e1;
  max-width: 420px;
}

.luxury-details p {
  margin: 12px 0;
  font-weight: 500;
}

.luxury-whatsapp {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 30px;
  border: 1px solid #22c55e;
  color: #22c55e;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.luxury-whatsapp:hover {
  background: #22c55e;
  color: black;
}

.luxury-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.luxury-form input,
.luxury-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #475569;
  padding: 14px 5px;
  margin-bottom: 28px;
  color: white;
  font-size: 15px;
}

.luxury-form textarea {
  resize: none;
  height: 120px;
}

.luxury-form input::placeholder,
.luxury-form textarea::placeholder {
  color: #94a3b8;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
}

.luxury-form button {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

#formMessage {
  margin-top: 15px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .luxury-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .luxury-text h2 {
    font-size: 34px;
  }
}
/* ===== FIX INDEX SCROLL ISSUE CAUSED BY STICKY HEADER ===== */

/* Only affect index page hero */
.hero {
  padding-top: 140px;
}

/* Ensure header does not break scroll */
header {
  position: sticky;
  top: 0;
  z-index: 999;
}
/* ==============================
   GLOBAL DARK BACKGROUND SUPPORT
============================== */

/* White content blocks on dark background */
.card,
.luxury-form,
.contact-form,
.contact-right,
.contact-box {
  background: #ffffff;
  color: #0f172a;
}

/* Headings on dark background */
h1,
h2,
h3 {
  color: #ffffff;
}

/* Headings inside white cards */
.card h3,
.card h2,
.card p {
  color: #0f172a;
}

