/* Coming Soon Page — standalone styles */

/* ── Interactive Banner ── */
.cs-banner {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cs-banner-bg {
  position: absolute;
  inset: -5%;
  background-image: url('../images/banner.webp');
  background-size: cover;
  background-position: center;
  animation: csKenBurns 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes csKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, -1%); }
}

.cs-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(34, 34, 34, 0.65) 50%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 1;
}

.cs-banner-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.cs-banner-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--golden-color) 50%, transparent 100%);
  z-index: 3;
}

.cs-banner-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 110px 0 90px;
}

.cs-banner-text-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.cs-banner-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--golden-color);
  margin-bottom: 24px;
  opacity: 0;
  animation: csFadeUp 0.8s ease forwards 0.15s;
}

.cs-banner-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.cs-banner-title .cs-line {
  
  overflow: hidden;
}

/*.cs-banner-title .cs-line span {*/
/*  display: inline-block;*/
/*  opacity: 0;*/
/*  transform: translateY(100%);*/
/*  animation: csLineReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;*/
/*}*/

.cs-banner-title .cs-line:nth-child(1) span { animation-delay: 0.35s; }

.cs-banner-title .cs-line-gold span {
  animation-delay: 0.6s;
  color: var(--golden-color);
  

}

.cs-banner-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px auto;
  opacity: 0;
  animation: csFadeUp 0.8s ease forwards 0.85s;
}

.cs-banner-accent-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--golden-color));
}

.cs-banner-accent-line:last-child {
  background: linear-gradient(90deg, var(--golden-color), transparent);
}

.cs-banner-accent-diamond {
  width: 8px;
  height: 8px;
  background: var(--golden-color);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cs-banner-desc {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.82);
 
  line-height: 1.85;
  margin: 0 auto;
  opacity: 0;
  animation: csFadeUp 0.8s ease forwards 1.05s;
  text-align: center;
}

@keyframes csLineReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes csFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.cs-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: csFadeUp 0.8s ease forwards 2s;
  cursor: pointer;
  text-decoration: none;
}

.cs-scroll-hint:hover { color: var(--golden-color); }

.cs-scroll-hint .cs-scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--golden-color);
  border-bottom: 2px solid var(--golden-color);
  transform: rotate(45deg);
  animation: csBounce 2s ease-in-out infinite;
}

@keyframes csBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

.cs-float-ring {
  position: absolute;
  border: 1px solid rgba(225, 185, 106, 0.12);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.cs-ring-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  right: 4%;
  animation: csFloat 9s ease-in-out infinite;
}

.cs-ring-2 {
  width: 160px;
  height: 160px;
  bottom: 18%;
  right: 12%;
  animation: csFloat 7s ease-in-out infinite reverse;
}

@keyframes csFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

/* ── Enquiry Section (Left Text + Right Form) ── */
.cs-enquiry {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--secondary-color) 0%, #fff 100%);
  position: relative;
}

.cs-enquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--golden-color), transparent);
}

.cs-enquiry-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.cs-enquiry-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--primary-color);
  margin-bottom: 18px;
  max-width: 380px;
}

.cs-enquiry-text h2 span {
  color: var(--golden-color);
  font-weight: 600;
}

.cs-enquiry-text > .cs-enquiry-inner > p {
  color: #666;
  line-height: 1.85;
  margin-bottom: 0;
  text-align: left;
  font-size: 1rem;
}

/* Form Card */
.cs-form-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cs-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--golden-color), #c9a24e, var(--golden-color));
}

.cs-form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cs-form-header-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-form-header-icon i {
  color: var(--golden-color);
  font-size: 1.1rem;
}

.cs-form-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.cs-form-card .cs-form-sub {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0;
  text-align: left;
}

.cs-form-card .form-group {
  margin-bottom: 16px;
}

.cs-input-wrap label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
  text-align: left;
  letter-spacing: 0.3px;
}

.cs-input-field {
  position: relative;
}

.cs-input-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 0.85rem;
  pointer-events: none;
  transition: color 0.3s;
}

.cs-input-field .form-control {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px 14px 12px 40px;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
  width: 100%;
}

.cs-input-field .form-control:focus {
  border-color: var(--golden-color);
  box-shadow: 0 0 0 3px rgba(225, 185, 106, 0.12);
  background: #fff;
  outline: none;
}

.cs-input-field:focus-within i {
  color: var(--golden-color);
}

.cs-input-field .form-control.cs-error {
  border-color: #ff392d;
}

.cs-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.55;
  text-align: left;
  padding: 12px 14px;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #eee;
}

.cs-checkbox-wrap.cs-error {
  border-color: #ff392d;
  background: #fff5f5;
}

.cs-checkbox-wrap input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--golden-color);
}

.cs-field-error {
  display: block;
  color: #ff392d;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 6px;
  min-height: 18px;
  text-align: left;
  line-height: 1.4;
}

.cs-form-status {
  color: #ff392d;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  min-height: 20px;
  text-align: left;
}

.cs-form-submit.readmore {
  margin-top: 0;
}

.cs-form-submit .button.solid {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cs-form-submit .button.solid i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.cs-form-submit .button.solid:hover i {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cs-banner { min-height: 80vh; }

  .cs-banner-content { padding: 80px 0 100px; }

  .cs-enquiry { padding: 60px 0; }

  .cs-enquiry-inner { padding-right: 0; }

  .cs-form-card { margin-top: 40px; height: auto; }

  .cs-ring-1, .cs-ring-2 { display: none; }
}

@media (max-width: 575px) {
  .cs-form-card { padding: 28px 20px; }
}
