﻿/* ============================================================
   Contact Page Stylesheet - Premium Corporate MnC Theme
   contact-page.css
   ============================================================ */

:root {
  /* Brand Colors */
  --primary:         #5B5FEF; /* Deep Purple */
  --royal-blue:      #2563EB; /* Enterprise Blue */
  --accent-green:    #10B981; /* Emerald Green */
  --accent-gold:     #F59E0B; /* Gold */
  
  /* Canvas & Surfaces */
  --canvas:          #F8FAFC; /* Light gray-blue canvas */
  --surface:         #FFFFFF; /* Pure White */
  --surface-glass:   rgba(255, 255, 255, 0.7);
  
  /* Borders & Shadows */
  --border:          rgba(15, 23, 42, 0.08);
  --border-focus:    rgba(37, 99, 235, 0.5);
  --shadow-sm:       0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:       0 10px 30px -3px rgba(15, 23, 42, 0.06);
  --shadow-float:    0 20px 40px -8px rgba(15, 23, 42, 0.08);
  
  /* Typography Colors */
  --text-primary:    #0B1220; /* Slate 900 */
  --text-secondary:  #475569; /* Slate 600 */
  --text-muted:      #94A3B8; /* Slate 400 */
  
  /* Fonts */
  --font-head:       'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Border Radii */
  --r-sm:            8px;
  --r-md:            16px;
  --r-lg:            24px;
}

/* ============================================================
   BASE & RESETS
   ============================================================ */
body.contact-page {
  background-color: var(--canvas);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.contact-page *, body.contact-page *::before, body.contact-page *::after {
  box-sizing: border-box;
}

body.contact-page .ct-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
}

@media (max-width: 1024px) {
  body.contact-page .ct-container {
    padding: 0 40px;
  }
}

@media (max-width: 640px) {
  body.contact-page .ct-container {
    padding: 0 20px;
  }
}

body.contact-page a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ============================================================
   0. TOP BAR
   ============================================================ */
.ct-topbar {
  background-color: #0B1220;
  color: #F8FAFC;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 0;
  letter-spacing: 0.02em;
}

.ct-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ct-topbar-badge {
  background: linear-gradient(135deg, var(--royal-blue), var(--primary));
  color: #FFF;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 12px;
}

.ct-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ct-topbar-link:hover { color: var(--royal-blue); }
.ct-topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.ct-nav {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ct-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ct-nav-brand {
  color: var(--text-primary);
}

.ct-nav-links {
  display: flex;
  gap: 36px;
}

.ct-nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
}

.ct-nav-links a:hover {
  color: var(--royal-blue);
}

.ct-btn-primary {
  padding: 12px 24px;
  background: var(--text-primary);
  color: #FFFFFF !important;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.ct-btn-primary:hover {
  background: var(--royal-blue);
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.ct-mobile-menu-toggle { display: none; }

@media (max-width: 860px) {
  .ct-nav-links, .ct-btn-nav { display: none; }
  .ct-mobile-menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
  }
  .ct-hamburger-line {
    width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px;
  }
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.ct-hero-section {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
  background: var(--canvas);
}

.ct-hero-bg-elements {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.ct-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.ct-shape-1 {
  width: 400px; height: 400px;
  background: rgba(37, 99, 235, 0.2);
  top: -100px; left: -100px;
}

.ct-shape-2 {
  width: 500px; height: 500px;
  background: rgba(91, 95, 239, 0.15);
  bottom: -200px; right: -100px;
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Breadcrumbs */
.ct-breadcrumbs {
  margin-bottom: 24px;
}
.ct-breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 8px; font-size: 13px; font-weight: 500;
}
.ct-breadcrumbs li { color: var(--text-muted); }
.ct-breadcrumbs li a { color: var(--text-secondary); }
.ct-breadcrumbs li a:hover { color: var(--royal-blue); }
.ct-breadcrumbs li:not(:last-child)::after {
  content: '/'; margin-left: 8px; color: var(--border);
}

.ct-hero-pretitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--royal-blue);
  margin-bottom: 16px;
}

.ct-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.ct-text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--royal-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 720px;
  margin: 0 0 40px;
}

.ct-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.ct-hero-glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
}

.ct-hero-glass-btn:hover {
  transform: translateY(-2px);
  background: #FFF;
  box-shadow: var(--shadow-md);
}

.ct-hero-glass-btn.primary-glass:hover { border-color: var(--royal-blue); color: var(--royal-blue); }
.ct-hero-glass-btn.success-glass:hover { border-color: var(--accent-green); color: var(--accent-green); }

/* Trust Signals */
.ct-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFF;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.ct-avatars {
  display: flex;
}
.ct-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #FFF;
  margin-left: -10px;
}
.ct-avatar:first-child { margin-left: 0; }

.ct-trust-text {
  font-size: 13px;
  color: var(--text-secondary);
}
.ct-highlight-text {
  color: var(--accent-green);
  font-weight: 600;
}

@media (max-width: 640px) {
  .ct-hero-trust { flex-direction: column; border-radius: var(--r-md); padding: 16px; }
  .ct-avatars { margin-bottom: 8px; }
}

/* ============================================================
   2. CHANNEL CARDS
   ============================================================ */
.ct-cards-section {
  padding: 40px 0 80px;
  background: var(--canvas);
}

.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .ct-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ct-cards-grid { grid-template-columns: 1fr; } }

.ct-theme-royalblue { --theme-color: #2563EB; }
.ct-theme-emerald { --theme-color: #10B981; }
.ct-theme-purple { --theme-color: #7C3AED; }
.ct-theme-gold { --theme-color: #F59E0B; }

.ct-channel-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}

.ct-card-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, var(--theme-color) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.ct-channel-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-color);
  box-shadow: var(--shadow-float);
}

.ct-channel-card:hover .ct-card-glow {
  opacity: 0.05;
}

.ct-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ct-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--canvas);
  color: var(--theme-color);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.ct-card-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

.ct-card-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-online { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }
.status-fast   { background: rgba(245, 158, 11, 0.1); color: var(--accent-gold); }
.status-hq     { background: rgba(37, 99, 235, 0.1); color: var(--royal-blue); }

.ct-card-content-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}

.ct-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.ct-card-desc {
  font-size: 14.5px;
  margin: 0 0 20px;
  color: #1E293B;
  line-height: 1.6;
}

.ct-card-meta {
  font-size: 13px;
  color: #334155;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.ct-card-meta svg { color: var(--theme-color); }

.ct-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

.ct-card-btn {
  display: block; width: 100%;
  padding: 13px 14px; text-align: center;
  border-radius: var(--r-sm);
  background: var(--text-primary);
  border: 1.5px solid transparent;
  color: #FFFFFF !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ct-card-btn:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px -5px var(--theme-color);
}

.ct-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-primary) !important;
}
.ct-btn-outline:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #FFFFFF !important;
}

/* ============================================================
   3. GLOBAL NETWORK
   ============================================================ */
.ct-network-section {
  padding: 100px 0;
  background: #FFF;
  border-top: 1px solid var(--border);
}

.ct-section-header { margin-bottom: 60px; }
.ct-text-center { text-align: center; }

.ct-network-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.ct-network-sub {
  font-size: 18px;
  max-width: 600px; margin: 0 auto;
}

.ct-timeline-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .ct-timeline-container { flex-direction: column; gap: 40px; }
}

.ct-network-panel {
  flex: 1;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.3s ease;
}

.ct-network-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.ct-header-title-row {
  display: flex; flex-direction: column; gap: 8px;
}

.ct-panel-header {
  display: flex; justify-content: space-between; align-items: flex-start;
}

.ct-desk-badge {
  display: inline-block;
  font-size: 11px; font-weight: 800; padding: 4px 10px;
  border-radius: 6px; color: #FFF; text-transform: uppercase;
  width: fit-content;
}
.ct-desk-badge-in { background: linear-gradient(135deg, #FF671F, #046A38); }
.ct-desk-badge-eu { background: #003399; }

.ct-panel-header h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--text-primary); margin: 0;
}

.ct-flag-icon { width: 36px; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

.ct-panel-divider {
  height: 1px; background: var(--border); margin: 20px 0;
}

.ct-panel-hours {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}

.hours-lbl { font-size: 13px; font-weight: 600; display: block; margin-bottom: 4px; }
.hours-val { font-size: 15px; font-weight: 700; color: var(--text-primary); }

.desk-status-badge {
  font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 20px;
}
.desk-status-badge.status-open {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.desk-status-badge.status-closed {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ct-panel-functions { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ct-panel-functions li {
  display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text-secondary);
}
.ct-check-icon {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green); display: flex; align-items: center; justify-content: center;
}

/* Timeline Connection */
.ct-timeline-divider {
  width: 100px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) { .ct-timeline-divider { display: none; } }

.ct-timeline-line {
  position: absolute; width: 100%; height: 2px; background: var(--border);
}

.ct-timeline-pulse-node {
  position: relative; width: 20px; height: 20px;
}

.ct-pulse-dot {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--royal-blue); z-index: 2;
}

.ct-pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid var(--royal-blue);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* ============================================================
   4. ENTERPRISE CONTACT FORM (Split Layout)
   ============================================================ */
.ct-form-section {
  padding: 100px 0;
  background: var(--canvas);
}

.ct-form-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .ct-form-layout-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-form-sidebar { order: 2; }
  .ct-form-wrapper { order: 1; }
}

/* Sidebar Left */
.ct-sidebar-sticky {
  position: sticky; top: 120px;
}

.ct-form-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ct-form-subheading {
  font-size: 16px; margin: 0 0 40px;
}

.ct-sidebar-perks {
  display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px;
}

.ct-perk-item { display: flex; gap: 16px; align-items: flex-start; }
.ct-perk-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #FFF; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal-blue); flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.ct-perk-icon svg { width: 22px; height: 22px; }

.ct-perk-item h4 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--text-primary); margin: 0 0 4px;
}
.ct-perk-item p { margin: 0; font-size: 14px; }

.ct-sidebar-testimonial {
  background: linear-gradient(135deg, #0B1220, #1E293B);
  color: #FFF; padding: 30px; border-radius: var(--r-md);
  position: relative; overflow: hidden;
}

.ct-sidebar-testimonial::before {
  content: '"'; position: absolute; top: -20px; left: 20px;
  font-family: var(--font-head); font-size: 120px; font-weight: 800;
  color: rgba(255,255,255,0.05); line-height: 1;
}

.ct-quote {
  font-size: 16px; font-style: italic; line-height: 1.6; margin: 0 0 20px; position: relative; z-index: 2;
}

.ct-author-info { display: flex; flex-direction: column; gap: 4px; }
.ct-author-name { font-weight: 700; font-family: var(--font-head); font-size: 15px; }
.ct-author-title { font-size: 13px; color: var(--text-muted); }

/* Form Wrapper Right */
.ct-form-wrapper {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-float);
}

@media (max-width: 640px) { .ct-form-wrapper { padding: 30px 20px; } }

.ct-form-internal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 20px;
}
.ct-form-internal-header h3 { font-family: var(--font-head); font-size: 20px; margin: 0; color: var(--text-primary); }
.ct-required-note { font-size: 12px; color: #EF4444; font-weight: 600; }

.ct-form-row {
  display: flex; gap: 20px;
}
@media (max-width: 640px) { .ct-form-row { flex-direction: column; gap: 0; } }

.ct-col-half { flex: 1; }

.ct-floating-group { position: relative; margin-bottom: 24px; }

.ct-input-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); display: flex; align-items: center; z-index: 5;
}

.ct-input, .ct-select {
  width: 100%; padding: 18px 18px 18px 50px;
  background: var(--canvas); border: 1.5px solid var(--border);
  border-radius: 12px; font-family: var(--font-body); font-size: 15px;
  color: var(--text-primary); transition: all 0.3s ease; box-sizing: border-box; outline: none;
}
.ct-input.no-icon { padding-left: 18px; }
.ct-textarea-group .ct-input { padding-top: 24px; resize: vertical; min-height: 120px; }
.ct-textarea-icon { top: 28px; transform: none; }

.ct-input:focus, .ct-select:focus {
  background: #FFF; border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.ct-input:focus ~ .ct-input-icon, .ct-select:focus ~ .ct-input-icon { color: var(--royal-blue); }

.ct-floating-label {
  position: absolute; left: 50px; top: 50%; transform: translateY(-50%);
  font-size: 15px; color: var(--text-muted); pointer-events: none;
  transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1); padding: 0 6px; z-index: 4;
}
.ct-floating-label.no-icon-label { left: 12px; }
.ct-textarea-label { top: 28px; transform: none; }

/* Label Floating Logic */
.ct-input:focus ~ .ct-floating-label,
.ct-input:not(:placeholder-shown) ~ .ct-floating-label,
.ct-floating-label.static {
  top: 0; transform: translateY(-50%);
  font-size: 12px; font-weight: 600; color: var(--royal-blue);
  background: #FFF; border-radius: 4px;
}

/* Select Wrapper Custom Arrow */
.ct-select-wrapper { position: relative; }
.ct-select { appearance: none; cursor: pointer; padding-right: 48px; }
.ct-select-arrow {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: var(--text-muted); pointer-events: none;
}

/* Custom Radios */
.ct-radio-group-container {
  margin-bottom: 24px; padding: 16px 20px;
  background: var(--canvas); border-radius: 12px; border: 1px solid var(--border);
}
.ct-radio-group-label { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0 0 12px; }
.ct-radio-options { display: flex; gap: 24px; flex-wrap: wrap; }
.ct-radio-label {
  display: flex; align-items: center; gap: 8px; font-size: 14.5px; cursor: pointer; font-weight: 500;
}
.ct-radio-label input { display: none; }
.ct-custom-radio {
  width: 20px; height: 20px; border: 2px solid var(--text-muted); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.ct-custom-radio::after {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--royal-blue);
  transform: scale(0); transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ct-radio-label input:checked + .ct-custom-radio { border-color: var(--royal-blue); }
.ct-radio-label input:checked + .ct-custom-radio::after { transform: scale(1); }

/* Custom Checkbox */
.ct-checkbox-group { margin-bottom: 24px; }
.ct-checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.ct-checkbox-label input { display: none; }
.ct-custom-checkbox {
  width: 22px; height: 22px; border: 2px solid var(--text-muted); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: 0.2s; background: #FFF; margin-top: 2px;
}
.ct-custom-checkbox svg { width: 14px; height: 14px; opacity: 0; transition: 0.2s; }
.ct-checkbox-label input:checked + .ct-custom-checkbox {
  background: var(--royal-blue); border-color: var(--royal-blue);
}
.ct-checkbox-label input:checked + .ct-custom-checkbox svg { opacity: 1; }
.ct-checkbox-text { font-size: 13.5px; line-height: 1.5; color: var(--text-secondary); }
.ct-checkbox-text a { color: var(--royal-blue); font-weight: 600; text-decoration: underline; }

/* Submit Button Layout */
.ct-btn-submit-gradient {
  width: 100%; padding: 18px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--royal-blue), var(--primary));
  color: #FFF; font-family: var(--font-head); font-weight: 700; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s ease; box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}
.ct-btn-submit-gradient:hover {
  transform: translateY(-2px); box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}
.submit-arrow { width: 20px; height: 20px; transition: 0.3s; }
.ct-btn-submit-gradient:hover .submit-arrow { transform: translateX(4px); }

/* Feedback Banner */
.ct-form-feedback {
  padding: 16px; border-radius: 8px; margin-bottom: 24px; font-weight: 600; font-size: 14px; text-align: center;
}
.ct-form-feedback.success { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); border: 1px solid rgba(16,185,129,0.2); }
.ct-form-feedback.error { background: rgba(239, 68, 68, 0.1); color: #EF4444; border: 1px solid rgba(239,68,68,0.2); }

/* Loader Spinner */
.ct-loader-spinner {
  width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #FFF; border-radius: 50%; animation: ct-spin 1s linear infinite;
}
@keyframes ct-spin { to { transform: rotate(360deg); } }

/* ============================================================
   5. FAQ / QUICK ANSWERS SECTION
   ============================================================ */
.ct-faq-quick-section {
  padding: 100px 0 180px; background: #FFF; border-top: 1px solid var(--border);
}

.ct-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 960px) { .ct-faq-grid { grid-template-columns: 1fr; gap: 40px; } }

.ct-answers-heading {
  font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px);
  font-weight: 800; color: var(--text-primary); margin: 0 0 32px; letter-spacing: -0.02em;
}
@media (max-width: 960px) { .ct-mobile-hidden { display: none; } }

/* Accordion */
.ct-accordion-wrapper { display: flex; flex-direction: column; gap: 16px; }
.ct-accordion-item {
  border: 1px solid var(--border); border-radius: 12px; background: var(--canvas);
  overflow: hidden; transition: 0.3s;
}
.ct-accordion-item:hover { border-color: rgba(37,99,235,0.3); }

.ct-accordion-trigger {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  background: transparent; border: none; cursor: pointer; text-align: left;
}
.ct-accordion-title {
  font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text-primary);
}
.ct-accordion-icon { width: 24px; height: 24px; color: var(--text-muted); transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.ct-accordion-trigger[aria-expanded="true"] .ct-accordion-icon { transform: rotate(180deg); color: var(--royal-blue); }
.ct-accordion-trigger[aria-expanded="true"] { border-bottom: 1px solid var(--border); }

.ct-accordion-content {
  max-height: 250px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.35s ease;
  padding: 0 24px 24px;
}
.ct-accordion-content p { font-size: 14.5px; color: var(--text-secondary); margin: 20px 0; }
.ct-accordion-content[hidden] {
  display: block !important;
  max-height: 0 !important;
  opacity: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  pointer-events: none;
}

/* Quick Cards Right */
.ct-answers-cards-wrap { display: flex; flex-direction: column; gap: 20px; }
.ct-answers-card {
  display: block; background: #FFF; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.ct-answers-card:hover { transform: translateX(8px); border-color: var(--royal-blue); box-shadow: var(--shadow-md); }
.ct-answers-content { display: flex; gap: 20px; align-items: flex-start; }
.ct-answers-illustration {
  width: 56px; height: 56px; border-radius: 12px; background: var(--canvas);
  color: var(--royal-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ct-answers-text-col h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text-primary); margin: 0 0 8px; }
.ct-answers-text-col p { font-size: 14px; margin: 0 0 12px; }
.ct-answers-link-text { font-size: 13.5px; font-weight: 700; color: var(--royal-blue); display: flex; align-items: center; gap: 4px; }

/* ============================================================
   6. FOOTER (MNC Grade Alignment)
   ============================================================ */
.site-footer {
  background: #0B1220; color: var(--text-muted); padding: 80px 0 0; position: relative;
}

.f-newsletter-strip {
  max-width: 1240px; margin: -140px auto 60px; background: linear-gradient(135deg, var(--primary), var(--royal-blue));
  border-radius: var(--r-lg); padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; gap: 40px;
  color: #FFF; box-shadow: 0 20px 40px rgba(37,99,235,0.2); position: relative; z-index: 10; width: calc(100% - 64px);
}
@media (max-width: 960px) { .f-newsletter-strip { flex-direction: column; text-align: center; padding: 40px 30px; } }

.f-nl-text h3 { font-family: var(--font-head); font-size: 28px; font-weight: 800; margin: 0 0 12px; }
.f-nl-text p { font-size: 16px; margin: 0; opacity: 0.9; }

.f-nl-form { display: flex; gap: 12px; width: 100%; max-width: 450px; }
.f-nl-form input { flex: 1; padding: 14px 20px; border-radius: 8px; border: none; font-size: 15px; outline: none; }
.f-btn-subscribe { padding: 14px 28px; border-radius: 8px; border: none; background: #0B1220; color: #FFF; font-weight: 700; cursor: pointer; transition: 0.3s; }
.f-btn-subscribe:hover { background: #1E293B; }
@media (max-width: 640px) { .f-nl-form { flex-direction: column; } }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; padding: 0 32px 60px; max-width: 1240px; margin: 0 auto;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.f-desc { font-size: 14.5px; line-height: 1.7; margin: 20px 0 24px; max-width: 400px; }
.social-row { display: flex; gap: 16px; }
.s-link { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #FFF; transition: 0.3s; }
.s-link:hover { background: var(--royal-blue); transform: translateY(-3px); }

.f-header { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #FFF; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }
.f-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.f-link { font-size: 14.5px; transition: 0.3s; }
.f-link:hover { color: #FFF; padding-left: 4px; }

.f-contact-block { display: flex; flex-direction: column; gap: 16px; }
.f-routing-desk { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--accent-green); margin-bottom: 8px; }
.f-contact-details { display: flex; flex-direction: column; gap: 12px; }
.f-contact-link { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #FFF; }
.f-contact-link.highlight { font-weight: 600; color: var(--royal-blue); }
.f-contact-link svg { width: 16px; height: 16px; opacity: 0.7; }
.f-address { font-size: 14px; line-height: 1.6; font-style: normal; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.f-address strong { color: #FFF; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 32px; max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } }

.f-bottom-left { display: flex; align-items: center; gap: 24px; font-size: 13.5px; }
@media (max-width: 768px) { .f-bottom-left { flex-direction: column; gap: 12px; } }

.f-legal-links { display: flex; align-items: center; gap: 12px; }
.f-legal-links a:hover { color: #FFF; }
.dot-sep { opacity: 0.3; }

.payment-logos { display: flex; align-items: center; gap: 12px; }
.p-secure-text { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #FFF; margin-right: 12px; }
.p-logo { height: 26px; width: auto; opacity: 0.8; filter: grayscale(1); transition: 0.3s; }
.p-logo:hover { opacity: 1; filter: grayscale(0); }