/* SUNGRID CONTACT PAGE — LUXURY / WOW */

.sgct-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sgct-title-light,
.sgct-title-dark {
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.sgct-title-light {
  color: #ffffff;
}
.sgct-title-dark {
  color: #071314;
}

.sgct-text-light,
.sgct-text-dark {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

.sgct-text-light {
  color: rgba(255, 255, 255, 0.72);
}
.sgct-text-dark {
  color: rgba(7, 19, 20, 0.7);
}

.sgct-actions {
  display: flex;
  gap: 14px;
}

/* HERO */
.sgct-hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #061314;
}

.sgct-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/contact-hero-bg.webp") center/cover
    no-repeat;
  transform: scale(1.03);
}

.sgct-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 35%,
      rgba(216, 255, 114, 0.2),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(3, 16, 17, 0.96),
      rgba(3, 16, 17, 0.82),
      rgba(3, 16, 17, 0.22)
    );
}

.sgct-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.sgct-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.sgct-hero__text {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.9;
}

.sgct-hero .sgct-actions {
  margin-top: 38px;
}

.sgct-hero__visual,
.sgct-location__visual {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.36);
}

.sgct-hero__visual img,
.sgct-location__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.85s ease !important;
}

.sgct-hero__visual:hover img,
.sgct-location__visual:hover img {
  transform: scale(1.15);
}

.sgct-hero__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
}

.sgct-hero__badge strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
}

.sgct-hero__badge span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* LIGHT CONTACT / QUICK */
.sgct-contact,
.sgct-quick {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(23, 216, 144, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(216, 255, 114, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fbf9 0%, #eef5f2 100%);
}

.sgct-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.sgct-info-list {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.sgct-info-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 19, 20, 0.06);
  box-shadow: 0 20px 60px rgba(14, 32, 30, 0.08);
  text-decoration: none;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease !important;
}

.sgct-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(23, 216, 144, 0.13);
}

.sgct-info-card span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #061314;
  background: linear-gradient(135deg, var(--sg-lime), var(--sg-green));
  font-size: 13px;
  font-weight: 900;
}

.sgct-info-card h3 {
  margin: 0;
  color: #071314;
  font-size: 22px;
}

.sgct-info-card p {
  margin: 8px 0 0;
  color: rgba(7, 19, 20, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.sgct-form-card {
  padding: 42px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(7, 19, 20, 0.06);
  box-shadow: 0 34px 90px rgba(14, 32, 30, 0.1);
}

.sgct-form-card__head {
  margin-bottom: 26px;
}

.sgct-form-card__head h3 {
  margin: 0;
  color: #071314;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sgct-form-card__head p {
  margin: 12px 0 0;
  color: rgba(7, 19, 20, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

/* WPForms styling */
.sgct-form-card .wpforms-container {
  margin: 0 !important;
}

.sgct-form-card .wpforms-field {
  padding: 0 0 16px !important;
}

.sgct-form-card input,
.sgct-form-card textarea,
.sgct-form-card select {
  min-height: 54px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(7, 19, 20, 0.1) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #071314 !important;
  box-shadow: none !important;
}

.sgct-form-card textarea {
  min-height: 140px !important;
}

.sgct-form-card button[type="submit"] {
  min-height: 54px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  color: #061314 !important;
  background: linear-gradient(
    135deg,
    var(--sg-lime),
    var(--sg-green)
  ) !important;
  border: none !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  box-shadow: 0 18px 45px rgba(23, 216, 144, 0.28) !important;
}

/* DARK LOCATION / FINAL */
.sgct-location,
.sgct-final {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(23, 216, 144, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, #061314 0%, #081818 100%);
}

.sgct-location__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.sgct-location-card {
  margin-top: 34px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.sgct-location-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
}

.sgct-location-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.sgct-location .sgct-actions {
  margin-top: 38px;
}

/* QUICK */
.sgct-quick__head {
  max-width: 820px;
  margin-bottom: 54px;
}

.sgct-quick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sgct-quick-card {
  min-height: 300px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 19, 20, 0.06);
  box-shadow: 0 24px 70px rgba(14, 32, 30, 0.08);
  text-decoration: none;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease !important;
}

.sgct-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(23, 216, 144, 0.13);
}

.sgct-quick-card strong {
  color: var(--sg-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sgct-quick-card h3 {
  margin: 28px 0 0;
  color: #071314;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.sgct-quick-card p {
  margin: 14px 0 0;
  color: rgba(7, 19, 20, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

/* FINAL CTA */
/* ========================================
ULTRA LUXURY CONTACT CTA
======================================== */

.sgct-ultra-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: #061314;
}

.sgct-ultra-cta__bg {
  position: absolute;
  inset: 0;

  background-image: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2200&auto=format&fit=crop");

  background-size: cover;
  background-position: center;

  transform: scale(1.04);
  opacity: 0.22;
}

.sgct-ultra-cta__overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(216, 255, 114, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(23, 216, 144, 0.14),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(6, 19, 20, 0.92) 0%,
      rgba(6, 19, 20, 0.97) 100%
    );
}

.sgct-ultra-cta__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}

.sgct-ultra-cta__content {
  max-width: 760px;
}

.sgct-ultra-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.92;
  letter-spacing: 0em;
}

.sgct-ultra-cta__text {
  max-width: 620px;

  margin: 32px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;
  line-height: 1.9;
}

.sgct-ultra-cta__actions {
  margin-top: 42px;
}

/* Floating Card */

.sgct-ultra-cta__visual {
  position: relative;
}

.sgct-ultra-card {
  position: relative;

  padding: 38px;

  border-radius: 34px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(24px);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  overflow: hidden;

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease !important;
}

.sgct-ultra-card::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(216, 255, 114, 0.14);

  filter: blur(30px);
}

.sgct-ultra-card:hover {
  transform: translateY(-8px);

  border-color: rgba(216, 255, 114, 0.22);

  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.42),
    0 0 60px rgba(216, 255, 114, 0.1);
}

.sgct-ultra-card__icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  border-radius: 24px;

  background: linear-gradient(135deg, var(--sg-lime), var(--sg-green));

  color: #061314;

  font-size: 30px;
  font-weight: 900;

  box-shadow: 0 24px 60px rgba(23, 216, 144, 0.26);
}

.sgct-ultra-card strong {
  position: relative;
  z-index: 2;

  display: block;

  color: #ffffff;

  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.sgct-ultra-card p {
  position: relative;
  z-index: 2;

  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 1.8;
}

.sgct-ultra-card__line {
  width: 100%;
  height: 1px;

  margin: 28px 0;

  background: linear-gradient(
    90deg,
    rgba(216, 255, 114, 0),
    rgba(216, 255, 114, 0.35),
    rgba(216, 255, 114, 0)
  );
}

.sgct-ultra-card span {
  position: relative;
  z-index: 2;

  display: block;

  color: rgba(255, 255, 255, 0.54);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Mobile */

@media (max-width: 1024px) {
  .sgct-ultra-cta__grid {
    grid-template-columns: 1fr;
  }

  .sgct-ultra-cta__visual {
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .sgct-ultra-cta {
    padding: 82px 0;
  }

  .sgct-ultra-cta__grid {
    gap: 38px;
  }

  .sgct-ultra-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .sgct-ultra-card strong {
    font-size: 28px;
  }

  .sgct-ultra-card p {
    font-size: 14px;
  }

  .sgct-ultra-cta__actions {
    flex-direction: row;
    gap: 10px;
  }

  .sgct-ultra-cta__actions .sg-btn {
    flex: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sgct-hero__grid,
  .sgct-contact__grid,
  .sgct-location__grid {
    grid-template-columns: 1fr;
  }

  .sgct-quick__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sgct-container {
    width: min(100% - 28px, 1180px);
  }

  .sgct-contact,
  .sgct-location,
  .sgct-quick,
  .sgct-final {
    padding: 82px 0;
  }

  .sgct-hero__visual,
  .sgct-location__visual {
    min-height: 420px;
    border-radius: 26px;
  }

  .sgct-actions {
    flex-direction: row;
    gap: 10px;
  }

  .sgct-actions .sg-btn {
    flex: 1;
  }

  .sgct-form-card {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .sgct-info-card {
    grid-template-columns: 46px 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .sgct-info-card span {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .sgct-quick-card {
    min-height: 230px;
    padding: 22px;
    border-radius: 24px;
  }

  .sgct-final__box {
    padding: 34px 22px;
    border-radius: 26px;
  }
}
