/* ==============================================
   BLYXXA CORPORATE – PREMIUM DARK THEME
   Bootstrap 5.3 + Custom CSS
   ============================================== */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(18, 18, 26, 0.7);
  --accent: #6c5ce7;
  --accent-2: #a855f7;
  --accent-3: #00d4aa;
  --text-1: #e8e8ed;
  --text-2: #8b8b9e;
  --text-h: #ffffff;
  --border-s: rgba(108, 92, 231, 0.15);
  --grad: linear-gradient(135deg, #6c5ce7, #a855f7);
  --grad-h: linear-gradient(135deg, #a855f7, #00d4aa);
  --glow: 0 0 30px rgba(108, 92, 231, 0.3);
  --font-h: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Base Reset ─── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-b);
  background: var(--bg-primary);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(108, 92, 231, 0.4);
  color: #fff;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  color: var(--text-h);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--accent-3); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; }

/* ─── Section Utilities ─── */
.section-padding { padding: 120px 0; }
.section-dark { background: var(--bg-secondary); }

.section-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 3rem;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn-blyxxa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.35);
}
.btn-primary-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
  color: #fff;
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Navigation ─── */
.navbar-blyxxa {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 14px 0;
  transition: var(--transition);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
}

.navbar-blyxxa.nav-scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-s);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-blyxxa .navbar-brand img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.navbar-blyxxa .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-blyxxa .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-blyxxa .nav-link:hover,
.navbar-blyxxa .nav-link.active {
  color: #fff !important;
}

.navbar-blyxxa .nav-link:hover::after,
.navbar-blyxxa .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ─── Hero ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.png') center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.9) 100%);
  z-index: 1;
}

/* Animated orb */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(108, 92, 231, 0.3);
  top: 10%; left: 5%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(0, 212, 170, 0.2);
  bottom: 15%; right: 10%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 1.5rem;
  padding: 6px 16px;
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator i {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ─── Service Cards ─── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--glow);
}

.service-card:hover::before {
  background: var(--grad);
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(168, 85, 247, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--accent-2);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--grad);
  color: #fff;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* ─── About Section ─── */
.about-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-h);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-family: var(--font-h);
}

.about-text p {
  color: var(--text-2);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── Why Us ─── */
.why-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(108, 92, 231, 0.05);
  border-color: var(--border-s);
}

.why-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
}

/* ─── Process Timeline ─── */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-2);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .process-num {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-2);
  font-size: 0.9rem;
}

/* Connector line between steps */
@media (min-width: 768px) {
  .process-connector {
    position: relative;
  }
  .process-connector::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
    z-index: 1;
    opacity: 0.3;
  }
}

/* ─── Stats Band ─── */
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-num {
  font-family: var(--font-h);
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-2);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Contact ─── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--accent-2);
  margin-top: 4px;
}

.contact-info-item p {
  color: var(--text-2);
  margin: 0;
}

.contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-cta-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-cta-card p {
  color: var(--text-2);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-s);
  padding-top: 80px;
  padding-bottom: 0;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-h);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: var(--text-2);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-3);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-s);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-2);
  font-size: 0.85rem;
}

.footer-desc {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .section-padding { padding: 80px 0; }
  .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-content { padding-top: 80px; }
  .navbar-collapse {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid var(--border-s);
  }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 60px 0; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .stat-num { font-size: 2rem; }
  .process-connector::before { display: none; }
  .contact-cta-card { padding: 2rem; }
}

/* ─── Sub-Page Hero ─── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-s);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.page-hero p {
  color: var(--text-2);
  font-size: 1.05rem;
  margin: 0;
  position: relative;
}

.page-hero .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  position: relative;
}

.page-hero .breadcrumb-nav a {
  color: var(--text-2);
}

.page-hero .breadcrumb-nav a:hover {
  color: var(--accent-3);
}

.page-hero .breadcrumb-nav span {
  color: var(--text-2);
}

.page-hero .breadcrumb-nav .separator {
  color: var(--accent);
}

/* ─── Legal Page Content ─── */
.legal-content {
  padding: 80px 0 100px;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-s);
  color: var(--text-h);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-2);
}

.legal-content p,
.legal-content li {
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  list-style-type: '›  ';
}

.legal-content a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--accent-2);
}

.legal-content strong {
  color: var(--text-1);
  font-weight: 600;
}

.legal-content .legal-updated {
  display: inline-block;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid var(--border-s);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 2rem;
}

.legal-content .legal-updated i {
  color: var(--accent-2);
  margin-right: 6px;
}

/* ─── 404 Error Page ─── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(108, 92, 231, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 212, 170, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.error-code {
  font-family: var(--font-h);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -4px;
}

.error-page h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--text-h);
}

.error-page p {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .page-hero { padding: 120px 0 50px; }
  .legal-content { padding: 50px 0 70px; }
}

/* ─── Contact Form ─── */
.contact-form-card {
  background: rgba(30, 27, 46, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-s);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--text-h);
}

.contact-form-card .form-subtitle {
  color: var(--text-2);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group label .optional {
  color: var(--text-2);
  font-weight: 400;
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 12, 30, 0.5);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  color: var(--text-1);
  font-size: 0.95rem;
  font-family: var(--font-b);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(186, 186, 210, 0.35);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  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 fill='%237c7c9a' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1730;
  color: var(--text-1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 14px !important;
  font-size: 1rem !important;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 1rem;
  margin-bottom: 0;
}

.form-disclaimer i {
  color: var(--accent-3);
  margin-right: 4px;
}

.form-disclaimer a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Thank You Page ─── */
.thankyou-icon {
  margin-bottom: 1.5rem;
}

.thankyou-icon i {
  font-size: 5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 767.98px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }
}
