/* V1 shared hover + accordion + connect hub */

.title-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kay-card {
  transition: transform var(--speed) var(--ease), box-shadow var(--speed), border-color var(--speed);
}
.kay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.45);
}

/* Accordion */
.kay-accordion { display: grid; gap: 0.65rem; }
.kay-acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--speed), box-shadow var(--speed);
}
.kay-acc-item.is-open {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}
.kay-acc-btn {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
  text-align: left;
  overflow-wrap: anywhere;
}
.kay-acc-btn:hover {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.12));
}
.kay-acc-item.is-open .kay-acc-btn {
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.55), rgba(14, 165, 233, 0.45));
}
.kay-acc-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  flex-shrink: 0;
  margin-top: 0.15em;
  justify-self: end;
}
.kay-acc-icon::before,
.kay-acc-icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.kay-acc-icon::before { width: 10px; height: 2px; }
.kay-acc-icon::after { width: 2px; height: 10px; transition: opacity var(--speed); }
.kay-acc-item.is-open .kay-acc-icon::after { opacity: 0; }
.kay-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.kay-acc-item.is-open .kay-acc-panel {
  max-height: 520px;
}
.kay-acc-panel__inner {
  overflow: visible;
  min-height: 0;
}
.kay-acc-panel__inner p {
  padding: 0 1.25rem 1.35rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.kay-acc-item:not(.is-open) .kay-acc-panel__inner p,
.kay-acc-item:not(.is-open) .kay-acc-panel__inner .faq-rental-list {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

/* Connect hub */
.connect-hub {
  background: linear-gradient(145deg, #12121c, #1a1a28);
  border-block: 1px solid var(--border);
}
.connect-hub__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.connect-hub__info h2 { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.35rem); margin-bottom: 1rem; }
.connect-hub__info > p { color: var(--text-muted); margin-bottom: 2rem; }
.connect-hub__cards { display: flex; flex-direction: column; gap: 1rem; }
.connect-hub__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform var(--speed), border-color var(--speed);
}
.connect-hub__card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.5);
}
.connect-hub__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gradient-btn);
  flex-shrink: 0;
}
.connect-hub__card h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.2rem; }
.connect-hub__card a, .connect-hub__card p { color: #fff; margin: 0; font-size: 0.95rem; }
.connect-hub__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}
.connect-hub__form h3 { font-family: var(--font-head); margin-bottom: 0.35rem; }
.connect-hub__form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

@media (max-width: 900px) {
  .connect-hub__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .kay-acc-btn {
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
    gap: 0.65rem;
  }
  .kay-acc-icon {
    width: 24px;
    height: 24px;
  }
  #faq .kay-acc-btn {
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
  }
  #faq .kay-acc-panel__inner {
    padding: 0.25rem 1rem 1.2rem;
  }
  #faq .kay-accordion {
    width: 100%;
    max-width: 100%;
  }
}

/* Footer wave + Crexed credit */
.footer--wave {
  position: relative;
  padding: 0 0 2rem;
  background: var(--bg);
  margin-top: 0;
}
.footer-wave {
  line-height: 0;
  margin-bottom: 2rem;
}
.footer-wave__svg {
  display: block;
  width: 100%;
  height: 72px;
  animation: footer-wave-sway 7s ease-in-out infinite;
}
.footer-wave__svg path { fill: var(--bg); }
@keyframes footer-wave-sway {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-6px) scaleY(1.04); }
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-credit a {
  color: var(--orange);
  font-weight: 600;
}
.footer-credit a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange-light); }

/* Advanced footer */
.footer--advanced {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.14), transparent 55%),
    linear-gradient(180deg, #0a0e18 0%, var(--bg) 45%, #060810 100%);
}
.footer--advanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.footer--advanced .container {
  position: relative;
  z-index: 1;
}
.footer-wave__svg path {
  fill: #0f1420;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  padding: 0.5rem 0 2.5rem;
}
.footer-brand {
  max-width: 320px;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-social a {
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.15);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-light);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 0.55rem;
}
.footer-col a,
.footer-col span {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col--cta p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-col--cta .btn {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.75rem 1.35rem;
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.35rem 0 0.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
    section#hero {
        margin-top: -50px;
    }

    .owl-carousel .owl-stage-outer {

    padding: 1rem 0 0rem !important;

}

.owl-wrap {

    position: relative;

    padding: 0px 0 0rem !important;

}
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .logo-name {
    font-size: 0.82rem;
  }
}


/*--------forms fields data-----------*/
.form-fields-set{
    width: 100%;
    padding: 0.85rem 1rem;
    font: inherit;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-radius: 8px;

}