/* ==========================================================================
   LUXURY FOOTER DESIGN
   ========================================================================== */
.luxury-footer {
  background-color: var(--color-midnight);
  color: var(--color-surface);
  margin-top: var(--space-xl);
}

.custom-footer-border {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* --- Brand Logo Bold Statement --- */
.footer-huge-logo {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 400;
  color: var(--color-surface);
  margin: 0;
}

.footer-huge-logo span {
  color: var(--color-champagne);
  font-style: italic;
}

.footer-tagline {
  color: var(--color-border);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
}

/* --- Columns Headers --- */
.footer-section-title {
  color: var(--color-champagne) !important;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* --- Anchor Directory Links --- */
.footer-link-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all var(--transition-fast);
}

.footer-link-list a:hover {
  color: var(--color-champagne);
  padding-left: 4px;
  /* Subtle premium mechanical interaction */
}

.footer-text-muted {
  color: rgba(255, 255, 255, 0.55);
}

/* --- Bespoke Form Underline Integration --- */
.bespoke-newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
}

.bespoke-newsletter-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 3rem 0.75rem 0;
  color: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition-fast);
}

.bespoke-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.bespoke-newsletter-form input:focus {
  border-bottom-color: var(--color-champagne);
}

.bespoke-newsletter-form button {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: var(--color-champagne);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  transition: transform var(--transition-slow);
}

.bespoke-newsletter-form button:hover {
  transform: translateX(6px);
}

/* --- Lower Utility Copybar --- */
.footer-utility-text,
.footer-utility-link,
.footer-social-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer-utility-link:hover,
.footer-social-link:hover {
  color: var(--color-champagne);
}

/*==================================================
    Parent Company Card
==================================================*/

.parent-company-card {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 28px;

  padding: 35px;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .02));

  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;

  transition: .35s ease;
}

/* Brand color glow */

.parent-company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      var(--color-red),
      var(--color-yellow),
      var(--color-green),
      var(--color-blue));
}

.parent-company-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(66, 133, 244, .12),
      transparent 70%);
}

.parent-company-card:hover {

  transform: translateY(-6px);

  border-color: rgba(255, 255, 255, .15);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, .35);
}


/* Logo */

.parent-company-logo {

  width: 90px;
  height: 90px;

  flex-shrink: 0;

  border-radius: 22px;

  background: #fff;

  padding: 10px;

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

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .25);
}

.parent-company-logo img {

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* Text */

.powered-by {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .25em;

  color: var(--color-champagne);

  margin-bottom: 10px;
}

.powered-by::before {

  content: "";

  width: 32px;
  height: 2px;

  background: linear-gradient(90deg,
      var(--color-red),
      var(--color-blue));
}

.parent-company-content h3 {

  margin-bottom: 14px;

  font-family: var(--font-serif);

  font-size: 2rem;

  font-weight: 500;
}

.parent-company-content h3 a {

  color: #fff;
  text-decoration: none;

  transition: .3s;
}

.parent-company-content h3 a:hover {

  color: var(--color-champagne);
}

.parent-company-content p {

  margin: 0;

  max-width: 900px;

  line-height: 1.9;

  color: rgba(255, 255, 255, .72);

  font-size: .97rem;
}

.parent-company-content strong {

  color: #fff;
}


/* Responsive */

@media(max-width:768px) {

  .parent-company-card {

    flex-direction: column;
    text-align: center;

    padding: 30px 24px;
  }

  .powered-by {

    justify-content: center;
  }

  .powered-by::before {

    display: none;
  }

  .parent-company-logo {

    width: 80px;
    height: 80px;
  }

  .parent-company-content h3 {

    font-size: 1.6rem;
  }
}

.parent-company-arrow {
  width: 72px;
  height: 72px;

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

  flex-shrink: 0;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);

  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);

  transition: .35s ease;
}

.parent-company-arrow svg {
  width: 26px;
  height: 26px;

  stroke: var(--color-champagne);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;

  transition: .35s ease;
}

.parent-company-arrow:hover {
  background: linear-gradient(135deg,
      var(--color-red),
      var(--color-yellow),
      var(--color-green),
      var(--color-blue));

  border-color: transparent;

  transform: translateX(8px);
}

.parent-company-arrow:hover svg {
  stroke: #fff;
  transform: translate(2px, -2px);
}