/* ==========================================
   AUROZE CONTACT PAGE
   Extends home design system (style.css)
   ========================================== */

.contact-page {
  --ct-pad-x: clamp(20px, 4vw, 64px);
  --ct-section-gap: clamp(80px, 12vh, 140px);
  --ct-glass: rgba(255, 255, 255, 0.04);
  --ct-glass-border: rgba(255, 255, 255, 0.08);
  --ct-glow: rgba(255, 95, 0, 0.35);
}

.contact-page .centerpiece-logo-wrapper,
.contact-page #webgl-container,
.contact-page .cinematic-intro {
  display: none !important;
}

/* Scroll progress */
.ct-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
}

.ct-scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), #ff9a56);
  box-shadow: 0 0 12px var(--ct-glow);
  transform-origin: left center;
}

/* Cursor glow */
.ct-cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.12) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

.contact-page:hover .ct-cursor-glow {
  opacity: 1;
}

@media (max-width: 768px) {
  .ct-cursor-glow {
    display: none;
  }
}

.ct-top-bar .logo {
  text-decoration: none;
  color: inherit;
}

.ct-cta-header {
  font-size: 11px;
  letter-spacing: 0.14em;
}

.overlay-nav .nav-item.is-active .nav-label {
  color: var(--accent-orange);
}

.overlay-nav .nav-item.is-active .nav-number {
  color: rgba(255, 95, 0, 0.55);
}

/* Layout */
.ct-main {
  position: relative;
  z-index: 5;
  width: 100%;
}

.ct-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--ct-pad-x);
}

.ct-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 95, 0, 0.85);
  margin-bottom: 16px;
}

.ct-section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.ct-section-head--center {
  text-align: center;
}

.ct-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.ct-section-sub {
  margin-top: 16px;
  max-width: 620px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(217, 217, 217, 0.62);
}

.ct-section-head--center .ct-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   HERO
   ========================================== */
.ct-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding: calc(100px + env(safe-area-inset-top, 0px)) 0 clamp(64px, 10vh, 100px);
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ct-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 95, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 95, 0, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060810 0%, var(--bg-color) 100%);
}

.ct-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 75%);
  animation: ct-grid-drift 24s linear infinite;
}

@keyframes ct-grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(64px, 64px); }
}

.ct-hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ct-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--ct-pad-x);
  text-align: center;
}

.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.ct-hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: rgba(217, 217, 217, 0.68);
  max-width: 640px;
  margin: 0 auto 40px;
}

.ct-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ct-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 0, 0.45);
  background: linear-gradient(135deg, rgba(255, 95, 0, 0.22), rgba(255, 95, 0, 0.08));
  color: var(--text-white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.ct-btn-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 95, 0, 0.7);
  box-shadow: 0 12px 40px rgba(255, 95, 0, 0.2);
}

.ct-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--ct-glass-border);
  background: var(--ct-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(217, 217, 217, 0.9);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.ct-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ==========================================
   CONTACT LAYOUT
   ========================================== */
.ct-contact-section {
  padding-bottom: var(--ct-section-gap);
}

.ct-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.ct-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.ct-info-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(217, 217, 217, 0.62);
  margin-bottom: 32px;
  max-width: 440px;
}

.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.ct-info-card {
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--ct-glass);
  border: 1px solid var(--ct-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-info-card:hover {
  border-color: rgba(255, 95, 0, 0.2);
  transform: translateX(4px);
}

.ct-info-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 95, 0, 0.75);
  margin-bottom: 8px;
}

.ct-info-card-value {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(217, 217, 217, 0.88);
}

.ct-info-card-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.ct-info-card-value a:hover {
  color: var(--accent-orange);
}

.ct-location-list,
.ct-available-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.ct-location-pill,
.ct-available-pill {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--ct-glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(217, 217, 217, 0.75);
}

/* Social */
.ct-social-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}

.ct-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ct-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ct-glass);
  border: 1px solid var(--ct-glass-border);
  color: rgba(217, 217, 217, 0.8);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease, box-shadow 0.35s ease;
}

.ct-social-btn svg {
  width: 18px;
  height: 18px;
}

.ct-social-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 95, 0, 0.35);
  color: var(--accent-orange);
  box-shadow: 0 8px 24px rgba(255, 95, 0, 0.12);
}

/* ==========================================
   FORM
   ========================================== */
.ct-form-panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--ct-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.ct-form-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.ct-form-sub {
  font-size: 14px;
  color: rgba(217, 217, 217, 0.55);
  margin-bottom: 28px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-field--full {
  grid-column: 1 / -1;
}

.ct-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(217, 217, 217, 0.55);
}

.ct-label .ct-required {
  color: var(--accent-orange);
}

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-white);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ct-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d9d9d9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ct-textarea {
  min-height: 140px;
  resize: vertical;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: rgba(217, 217, 217, 0.3);
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  outline: none;
  border-color: rgba(255, 95, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.ct-input.is-error,
.ct-select.is-error,
.ct-textarea.is-error {
  border-color: rgba(255, 80, 80, 0.6);
}

.ct-field-error {
  font-size: 12px;
  color: rgba(255, 120, 120, 0.9);
  min-height: 0;
}

.ct-field-error:not(:empty) {
  min-height: 16px;
}

.ct-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ct-submit {
  margin-top: 8px;
  width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-orange), #ff8533);
  color: var(--text-white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ct-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 95, 0, 0.35);
}

.ct-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.ct-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ct-spin 0.7s linear infinite;
  margin: 0 auto;
}

.ct-submit.is-loading .ct-submit-text { display: none; }
.ct-submit.is-loading .ct-submit-spinner { display: block; }

@keyframes ct-spin {
  to { transform: rotate(360deg); }
}

.ct-form-status {
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.ct-form-status.is-visible {
  display: block;
}

.ct-form-status--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: rgba(180, 240, 200, 0.95);
}

.ct-form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: rgba(255, 180, 180, 0.95);
}

/* ==========================================
   BENTO — WHY WORK WITH AUROZE
   ========================================== */
.ct-bento-section {
  padding: var(--ct-section-gap) 0;
}

.ct-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
}

.ct-bento-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  background: var(--ct-glass);
  border: 1px solid var(--ct-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}

.ct-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 0, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ct-bento-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 95, 0, 0.12);
  border: 1px solid rgba(255, 95, 0, 0.2);
  color: var(--accent-orange);
  font-size: 16px;
  margin-bottom: 16px;
}

.ct-bento-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.ct-bento-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(217, 217, 217, 0.58);
}

/* ==========================================
   PROCESS TIMELINE
   ========================================== */
.ct-process-section {
  padding-bottom: var(--ct-section-gap);
}

.ct-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  position: relative;
}

.ct-process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 0, 0.35), transparent);
  pointer-events: none;
}

.ct-process-step {
  position: relative;
  padding: 24px 20px;
  border-radius: 18px;
  background: var(--ct-glass);
  border: 1px solid var(--ct-glass-border);
  text-align: center;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-process-step.is-visible {
  border-color: rgba(255, 95, 0, 0.2);
}

.ct-process-step:hover {
  transform: translateY(-4px);
}

.ct-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 95, 0, 0.1);
  border: 1px solid rgba(255, 95, 0, 0.25);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.ct-process-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.ct-process-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(217, 217, 217, 0.55);
}

/* ==========================================
   FAQ
   ========================================== */
.ct-faq-section {
  padding-bottom: var(--ct-section-gap);
}

.ct-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-faq-item {
  border-radius: 16px;
  background: var(--ct-glass);
  border: 1px solid var(--ct-glass-border);
  overflow: hidden;
  transition: border-color 0.35s ease;
}

.ct-faq-item.is-open {
  border-color: rgba(255, 95, 0, 0.22);
}

.ct-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: none;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.ct-faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--accent-orange);
  transition: transform 0.35s ease;
}

.ct-faq-item.is-open .ct-faq-icon {
  transform: rotate(45deg);
}

.ct-faq-answer {
  height: 0;
  overflow: hidden;
}

.ct-faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(217, 217, 217, 0.62);
}

/* ==========================================
   FINAL CTA
   ========================================== */
.ct-final-cta {
  padding: clamp(64px, 10vh, 100px) 0 var(--ct-section-gap);
}

.ct-final-inner {
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 64px);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 95, 0, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 95, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.ct-final-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 95, 0, 0.1), transparent);
  pointer-events: none;
}

.ct-final-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ct-final-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Reveal animation base */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .ct-contact-grid {
    grid-template-columns: 1fr;
  }

  .ct-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ct-process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .ct-hero {
    min-height: auto;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }

  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-bento-grid {
    grid-template-columns: 1fr;
  }

  .ct-process-timeline {
    grid-template-columns: 1fr;
  }

  .ct-hero-actions,
  .ct-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ct-btn-primary,
  .ct-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .ct-form-panel {
    padding: 20px 16px;
  }

  .ct-info-card {
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-hero-grid {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
