
:root {
  --red: #de143c;
  --blue: #406ceb;
  --grad: linear-gradient(to right, #de143c 0%, #406ceb 100%);
  --grad-diag: linear-gradient(135deg, #de143c 0%, #7040d0 50%, #406ceb 100%);
  --white: #ffffff;
  --off: #f8f9ff;
  --surface: rgba(255,255,255,0.72);
  --surface2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.55);
  --border2: rgba(255,255,255,0.3);
  --text: #0d1120;
  --body: #2a2f4a;
  --muted: #7580a0;
  --err: #e0245e;
  --err-soft: rgba(224,36,94,0.12);
  --focus-ring: rgba(64,108,235,0.2);
  --input-bg: rgba(255,255,255,0.6);
  --input-hover: rgba(255,255,255,0.78);
  --input-focus: rgba(255,255,255,0.92);
}

.contact-form{
    padding: 0px !important ;
        background: none !important;
}

.pg {
  padding: 0;
  background: linear-gradient(135deg, #de143c 0%, #7040d0 48%, #406ceb 100%);
  position: relative;
  border-radius: 20px;  
  margin-bottom: 20px;
}

.pg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  pointer-events: none;
}

.pg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb1 {
  width: 400px;
  height: 400px;
  background: rgba(222,20,60,0.35);
  top: -120px;
  left: -100px;
}

.orb2 {
  width: 350px;
  height: 350px;
  background: rgba(64,108,235,0.3);
  bottom: -80px;
  right: -80px;
}

.orb3 {
  width: 250px;
  height: 250px;
  background: rgba(160,60,200,0.2);
  top: 40%;
  left: 30%;
}

.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px 64px;
}

.shell {
  width: 100%;
  max-width: 820px;
}

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 24px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.8);
}

.gcard-top {
  padding: 44px 48px 0;
}

.gtop-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.gtop-left {}

.gtop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.gbadge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  background: linear-gradient(to right, #de143c, #406ceb);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.75)} }

.gbadge-txt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(to right, #de143c, #406ceb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gtop-title {
  
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -1px;
}

.gtop-title-grad {
  background: linear-gradient(to right, #de143c 0%, #406ceb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gtop-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 12px;
  line-height: 1.65;
}

.gtop-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.gtr-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gtr-step {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.gtr-step-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.gtr-step-txt.on {
  color: var(--body);
}

.gtr-step-n {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.gtr-step-n.on {
  background: linear-gradient(135deg, #de143c, #406ceb);
  border-color: transparent;
  color: #fff;
}

.progress-bar-wrap {
  height: 3px;
  background: rgba(0,0,0,0.07);
  border-radius: 2px;
  margin-bottom: 0;
}

.progress-bar-fill {
  height: 3px;
  width: 66%;
  border-radius: 2px;
  background: linear-gradient(to right, #de143c, #406ceb);
}

.gcard-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(222,20,60,0.2), rgba(64,108,235,0.2));
  margin: 32px 0 0;
}

.gcard-body {
  padding: 36px 48px 44px;
}

.sec-block {
  margin-bottom: 28px;
}

.sec-bar-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sbl-line-left {
  width: 32px;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(to right, #de143c, #406ceb);
  flex-shrink: 0;
}

.sbl-txt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.sbl-line-right {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.flabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--body);
}
label{
 color: var(--body) !important;   
}

.flabel-icon {
  width: 12px;
  height: 12px;
  fill: var(--blue);
  flex-shrink: 0;
}

.finp {
  position: relative;
}

.finp input,
.finp select {
  width: 100%;
  height: 50px;
  background: var(--input-bg);
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  padding: 0 16px;
  
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color 0.18px, background 0.18px, box-shadow 0.18px;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
}

.finp input::placeholder {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.finp input:hover,
.finp select:hover {
  background: var(--input-hover);
  border-color: rgba(255,255,255,0.9);
}

.finp input:focus,
.finp select:focus {
  background: var(--input-focus);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--focus-ring), inset 0 1px 0 rgba(255,255,255,1);
}

.field.err .finp input,
.field.err .finp select {
  border-color: var(--err);
  box-shadow: 0 0 0 4px var(--err-soft);
}

.sel-arr {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.sel-arr svg {
  width: 14px;
  height: 14px;
  fill: var(--muted);
}

.phone-pair {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 8px;
}

.ferr {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--err);
  padding-left: 2px;
}

.ferr svg {
  width: 11px;
  height: 11px;
  fill: var(--err);
  flex-shrink: 0;
}

.field.err .ferr { display: flex; }

.sec-gap { margin-top: 32px; }

.form-foot-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(222,20,60,0.15), rgba(64,108,235,0.15));
  margin: 28px 0 24px;
}

.foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(to right, #de143c 0%, #406ceb 100%);
  background-size: 200% 100%;
  background-position: left center;
  position: relative;
  overflow: hidden;
  transition: background-position 0.4px, transform 0.15px, box-shadow 0.2px;
  box-shadow: 0 4px 20px rgba(100,50,200,0.3);
}

.sbtn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #406ceb 0%, #de143c 100%);
  opacity: 0;
  transition: opacity 0.35px;
}

.sbtn:hover .sbtn-overlay { opacity: 1; }

.sbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(100,50,200,0.4), 0 0 0 3px rgba(64,108,235,0.2);
}

.sbtn:active { transform: scale(0.98); }

.sbtn-icon {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  position: relative;
  z-index: 1;
}

.sbtn-txt {
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.snote {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.snote-icon {
  width: 13px;
  height: 13px;
  fill: var(--muted);
  flex-shrink: 0;
}

.smsg {
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(64,108,235,0.07);
  border: 1.5px solid rgba(64,108,235,0.2);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}

.smsg.show { display: flex; }

.smsg-icon {
  width: 24px;
  height: 24px;
  fill: var(--blue);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .gcard-top { padding: 32px 24px 0; }
  .gcard-body { padding: 28px 24px 36px; }
  .gtop-row { flex-direction: column; }
  .gtop-right { display: none; }
  .gtop-title { font-size: 32px; }
  .fgrid { grid-template-columns: 1fr; }
  .phone-pair { grid-template-columns: 1fr; }
}