.hero-slider {
  width: 100%;
  height: 100vh;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
  position: relative;
}

.slider-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text */
.hero-text {
  bottom: 30%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
  color: #d4c236;
}

.hero-text p {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

.experience-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Small tag */
.experience-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Main text */
.experience-title {
  font-family: "Georgia", serif;
  font-size: 38px;
  font-weight: 400;
  color: #0f1230;
  line-height: 1.5;
  margin-bottom: 30px;
}

.experience-title em {
  color: #d4af37;
  font-style: italic;
}

/* Divider */
.experience-divider {
  width: 40px;
  height: 1px;
  background: #d4af37;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 991px) {
  .experience-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .experience-section {
    padding: 80px 15px;
  }

  .experience-title {
    font-size: 24px;
    line-height: 1.6;
  }
}

.sophistication-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Title */
.soph-title {
  font-family: "Georgia", serif;
  font-size: 36px;
  font-weight: 400;
  color: #0f1230;
  margin-bottom: 20px;
}

.soph-title em {
  font-style: italic;
}

/* Description */
.soph-desc {
  font-size: 14px;
  color: #6c757d;
  max-width: 420px;
  margin-bottom: 25px;
}

/* List */
.soph-list {
  list-style: none;
  padding: 0;
}

.soph-list li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.soph-list i {
  color: #d4af37;
  font-size: 16px;
}

/* Image */
.soph-image {
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Badge */
.soph-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #d4af37;
  color: #000;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.soph-badge i {
  font-size: 14px;
}

.soph-btn {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s ease;
}

.soph-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Tablet */
@media (max-width: 991px) {
  .sophistication-section {
    padding: 90px 0;
  }

  .soph-title {
    font-size: 30px;
  }

  .soph-desc {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sophistication-section {
    padding: 70px 15px;
  }

  .soph-title {
    font-size: 26px;
  }

  .soph-badge {
    position: static;
    margin-top: 15px;
    width: fit-content;
  }
}

.contact-section {
  background-color: #e9e6d5;
}

/* Main Title */
.contact-main-title {
  font-family: "Georgia", serif;
  font-size: 40px;
  color: #b8a632;
  font-weight: 400;
}

/* Image */
.contact-img-wrapper img {
  width: 100%;
  height: 50%;
  display: block;
}

/* Office Title */
.office-title {
  font-family: "Georgia", serif;
  font-size: 32px;
  margin-bottom: 25px;
  color: #1a1a1a;
}

/* Contact Info */
.contact-info {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.contact-info a {
  color: #b8a632;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-main-title {
    font-size: 30px;
  }

  .office-title {
    font-size: 24px;
  }

  .contact-content {
    text-align: center;
  }
}

.contact-section {
  background: #f3f3f3;
}

.contact-title {
  font-family: "Georgia", serif;
  font-size: 34px;
  font-weight: 400;
  color: #1f2937;
}

/* Input Styling */
.custom-input {
  border-radius: 0;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.custom-input:focus {
  box-shadow: none;
  border-color: #b8a632;
}

/* Button */
.submit-btn {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 12px 40px;
  border: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #b8a632;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 24px;
  }

  .form-label {
    margin-bottom: 8px;
  }

  .row.align-items-center {
    flex-direction: column;
  }

  .col-md-3,
  .col-md-9 {
    width: 100%;
  }
}
