.elementor-380 .elementor-element.elementor-element-5f1ec67{--display:flex;}.elementor-380 .elementor-element.elementor-element-716af5d{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-71b3dab *//*
================================================================
  CUSTOM CSS — Travel Query Form
  Paste into: WordPress → Appearance → Customize → Additional CSS
  OR in your child theme's style.css
================================================================
*/

/* ── Variables ── */
:root {
  --tq-primary:   #010440;
  --tq-secondary: #054bab;
  --tq-accent:    #ff7b38;
  --tq-bg:        #ffffff;
  --tq-light:     #f4f6fb;
  --tq-border:    #dde3f0;
  --tq-text:      #1a1a2e;
  --tq-muted:     #6b7390;
  --tq-radius:    10px;
  --tq-shadow:    0 8px 40px rgba(1, 4, 64, 0.10);
  --tq-trans:     all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Wrapper ── */
.tq-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--tq-bg);
  border-radius: 20px;
  box-shadow: var(--tq-shadow);
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* ── Header ── */
.tq-header {
  background: linear-gradient(135deg, var(--tq-primary) 0%, var(--tq-secondary) 100%);
  padding: 44px 48px 36px;
  position: relative;
  overflow: hidden;
}
.tq-header::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -120px;
  right: -80px;
}
.tq-header::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 123, 56, 0.12);
  border-radius: 50%;
  bottom: -60px;
  left: 40px;
}
.tq-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  margin: 0;
}
.tq-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.tq-accent-bar {
  width: 52px;
  height: 4px;
  background: var(--tq-accent);
  border-radius: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* ── Form Body ── */
.tq-body {
  padding: 40px 48px 48px;
}
.tq-body p { margin: 0; }

/* ── Section Labels ── */
.tq-section-label {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tq-secondary) !important;
  margin: 28px 0 14px !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ── Grid Layout ── */
.tq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tq-grid.full  { grid-template-columns: 1fr; }
.tq-grid.three { grid-template-columns: 1fr 1fr 1fr; }

/* ── Field Wrapper ── */
.tq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tq-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--tq-text);
  font-family: 'DM Sans', sans-serif;
}

/* ── Inputs, Selects, Textarea ── */
.tq-field input,
.tq-field select,
.tq-field textarea,
.wpcf7-form .tq-field input[type="text"],
.wpcf7-form .tq-field input[type="email"],
.wpcf7-form .tq-field input[type="tel"],
.wpcf7-form .tq-field input[type="number"],
.wpcf7-form .tq-field select,
.wpcf7-form .tq-field textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid var(--tq-border) !important;
  border-radius: var(--tq-radius) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.9rem !important;
  color: var(--tq-text) !important;
  background: var(--tq-light) !important;
  transition: var(--tq-trans) !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

/* Custom select arrow */
.tq-field select,
.wpcf7-form .tq-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23054bab' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
  cursor: pointer;
}

/* Focus States */
.tq-field input:focus,
.tq-field select:focus,
.tq-field textarea:focus {
  border-color: var(--tq-secondary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(5, 75, 171, 0.10) !important;
}

/* Textarea */
.tq-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Divider ── */
.tq-divider {
  border: none !important;
  border-top: 1px solid var(--tq-border) !important;
  margin: 28px 0 !important;
  background: none;
}

/* ── Dynamic Sections ── */
.tq-dynamic {
  display: none;
}
.tq-dynamic.active {
  display: contents;
}

/* ── Animations ── */
@keyframes tqFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tq-dynamic.active .tq-field {
  animation: tqFadeIn 0.3s ease forwards;
}

/* ── Submit Button ── */
.tq-submit-wrap {
  margin-top: 32px;
  text-align: center;
}
.wpcf7-form input.tq-submit,
.wpcf7-form .tq-submit,
input.tq-submit {
  background: var(--tq-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--tq-radius) !important;
  padding: 15px 52px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  cursor: pointer !important;
  transition: var(--tq-trans) !important;
  box-shadow: none !important;
}
.wpcf7-form input.tq-submit:hover,
.wpcf7-form .tq-submit:hover {
  background: #e86a28 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255, 123, 56, 0.35) !important;
}
.wpcf7-form input.tq-submit:active {
  transform: translateY(0) !important;
}

/* ── CF7 Validation & Responses ── */
.wpcf7-not-valid-tip {
  color: var(--tq-accent) !important;
  font-size: 0.78rem !important;
  font-family: 'DM Sans', sans-serif !important;
  margin-top: 4px !important;
}
.wpcf7-response-output {
  border-radius: var(--tq-radius) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.88rem !important;
  padding: 12px 18px !important;
  margin-top: 16px !important;
  border: none !important;
}
.wpcf7-mail-sent-ok {
  background: #e6f9f0 !important;
  color: #1a7a4a !important;
}
.wpcf7-validation-errors {
  background: #fff3e8 !important;
  color: #c05000 !important;
}
.wpcf7-spam-blocked {
  background: #ffeaea !important;
  color: #b00020 !important;
}

/* ── Spinner ── */
.wpcf7 .ajax-loader {
  display: none !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .tq-header,
  .tq-body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .tq-grid {
    grid-template-columns: 1fr !important;
  }
}/* End custom CSS */