.elementor-42 .elementor-element.elementor-element-45606a0{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d3b1b2f *//* ============================================================
   SEERAH AIR TRAVEL — Contact Page CSS
   Scoped to .seerah-wrap to avoid WordPress theme conflicts
   Paste into: Appearance > Customize > Additional CSS
   OR enqueue via your child theme's style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&family=Dancing+Script:wght@600&display=swap');

/* ── TOKENS ── */
.seerah-wrap {
  --navy:        #003366;
  --navy-dark:   #002244;
  --red:         #E0263C;
  --red-dark:    #b81e30;
  --gold:        #C9A84C;
  --gold-light:  #F5D78E;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --text:        #1a2340;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 8px 30px rgba(0,0,0,.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;

  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.seerah-wrap *,
.seerah-wrap *::before,
.seerah-wrap *::after {
  box-sizing: border-box;
}

.seerah-wrap a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.seerah-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seerah-wrap img {
  max-width: 100%;
  display: block;
}

/* ── LAYOUT ── */
.seerah-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.seerah-wrap section {
  padding: 90px 0;
}

.seerah-wrap .bg-light {
  background: var(--off-white);
}

.seerah-wrap .text-center {
  text-align: center;
}

/* ── GRIDS ── */
.seerah-wrap .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.seerah-wrap .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ── TYPOGRAPHY ── */
.seerah-wrap h1,
.seerah-wrap h2,
.seerah-wrap h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  margin: 0;
}

.seerah-wrap h4,
.seerah-wrap h5 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.seerah-wrap p {
  margin: 0;
}

.seerah-wrap .section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(224,38,60,.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.seerah-wrap .section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.seerah-wrap .section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 52px;
}

/* ── BUTTONS ── */
.seerah-wrap .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.seerah-wrap .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s ease;
}

.seerah-wrap .btn:hover::before {
  left: 150%;
}

.seerah-wrap .btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(224,38,60,.3);
}

.seerah-wrap .btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224,38,60,.45);
}



/* ── CONTACT FORM ── */
.seerah-wrap .contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.seerah-wrap .contact-form h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.seerah-wrap .input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.seerah-wrap .input-group {
  margin-bottom: 18px;
}

.seerah-wrap .input-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.seerah-wrap .input-group input,
.seerah-wrap .input-group select,
.seerah-wrap .input-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform .2s ease;
}


/* ============================================================
   CONTACT FORM ENHANCEMENTS
   (Append this to the end of your existing CSS)
   ============================================================ */

/* Success & Error Messages */
.seerah-wrap .form-alert{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:16px 18px;
    border-radius:10px;
    margin-bottom:20px;
    font-size:.9rem;
    line-height:1.6;
    animation:seerahFadeIn .3s ease;
}

.seerah-wrap .form-alert i{
    font-size:20px;
    margin-top:2px;
    flex-shrink:0;
}

.seerah-wrap .form-alert.success{
    background:#ECFDF3;
    border:1px solid #BBF7D0;
    color:#166534;
}

.seerah-wrap .form-alert.error{
    background:#FEF2F2;
    border:1px solid #FECACA;
    color:#B91C1C;
}

/* Loading Button */
.seerah-wrap #submitBtn:disabled{
    opacity:.75;
    cursor:not-allowed;
}

.seerah-wrap #submitBtn .fa-spinner{
    animation:seerahSpin .8s linear infinite;
}

/* Select Cursor */
.seerah-wrap .input-group select{
    cursor:pointer;
}

/* Focus Ring (same design, slightly smoother) */
.seerah-wrap .input-group input:focus,
.seerah-wrap .input-group select:focus,
.seerah-wrap .input-group textarea:focus{
    border-color:var(--red);
    box-shadow:0 0 0 3px rgba(224,38,60,.10);
}

/* Animations */
@keyframes seerahSpin{
    to{
        transform:rotate(360deg);
    }
}

@keyframes seerahFadeIn{
    from{
        opacity:0;
        transform:translateY(-8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ── INFO BOX ── */.seerah-wrap .info-box {background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);border-radius: var(--radius-lg);padding: 44px 36px;color: var(--white);}

.seerah-wrap .info-box h3 {font-size: 1.6rem;color: var(--gold-light);margin-bottom: 10px;}

.seerah-wrap .info-box > p {color: rgba(255,255,255,.65);font-size: .9rem;margin-bottom: 32px;}

.seerah-wrap .info-item {display: flex;align-items: flex-start;gap: 16px;margin-bottom: 24px;transition: transform var(--transition);}

.seerah-wrap .info-item {transform: translateX(6px);}

.seerah-wrap .info-icon {width: 42px;height: 42px;flex-shrink: 0;background: rgba(255,255,255,.1);border-radius: 10px;display: flex;align-items: center;justify-content: center;color: var(--gold-light);font-size: 1.05rem;}

.seerah-wrap .info-item h4 {font-size: .88rem;font-weight: 600;margin-bottom: 4px;}

.seerah-wrap .info-item p {font-size: .82rem;color: rgba(255,255,255,.65);}

/* ── BRANCH CARDS ── */.seerah-wrap .branch-card {background: var(--white);border-radius: var(--radius-lg);padding: 36px 28px;text-align: center;box-shadow: var(--shadow-sm);border: 1px solid var(--border);transition: all var(--transition);}

.seerah-wrap .branch-card {box-shadow: var(--shadow);transform: translateY(-4px);border-color: var(--red);}

.seerah-wrap .branch-card > i {font-size: 2rem;color: var(--red);margin-bottom: 14px;}

.seerah-wrap .branch-card h4 {font-size: 1rem;font-weight: 600;color: var(--navy);margin-bottom: 6px;}

.seerah-wrap .branch-card p {font-size: .87rem;color: var(--muted);}

/* ── SCROLL REVEAL ── */.seerah-wrap .reveal {opacity: 0;transform: translateY(28px);transition: opacity .65s ease, transform .65s ease;}

.seerah-wrap .reveal.revealed {opacity: 1;transform: translateY(0);}

.seerah-wrap .reveal-left {opacity: 0;transform: translateX(-44px);transition: opacity .65s ease, transform .65s ease;}

.seerah-wrap .reveal-left.revealed {opacity: 1;transform: translateX(0);}

.seerah-wrap .reveal-right {opacity: 0;transform: translateX(44px);transition: opacity .65s ease, transform .65s ease;}

.seerah-wrap .reveal-right.revealed {opacity: 1;transform: translateX(0);}

.seerah-wrap .delay-1 { transition-delay: .1s !important; }.seerah-wrap .delay-2 { transition-delay: .2s !important; }.seerah-wrap .delay-3 { transition-delay: .3s !important; }.seerah-wrap .delay-4 { transition-delay: .4s !important; }.seerah-wrap .delay-5 { transition-delay: .5s !important; }

/* ── RESPONSIVE ── */@media (max-width: 768px) {.seerah-wrap section         { padding: 64px 0; }.seerah-wrap .grid-2         { grid-template-columns: 1fr; gap: 32px; }.seerah-wrap .grid-3         { grid-template-columns: 1fr; }.seerah-wrap .contact-form   { padding: 28px 20px; }.seerah-wrap .input-row      { grid-template-columns: 1fr; }.seerah-wrap .info-box       { padding: 28px 20px; }}

@media (prefers-reduced-motion: reduce) {.seerah-wrap *,.seerah-wrap *::before,.seerah-wrap *::after {animation-duration: .01ms !important;animation-iteration-count: 1 !important;transition-duration: .01ms !important;}}

/* ── INFO BOX ── */
.seerah-wrap .info-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
}

.seerah-wrap .info-box h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.seerah-wrap .info-box > p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-bottom: 32px;
}

.seerah-wrap .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  transition: transform var(--transition);
}

.seerah-wrap .info-item:hover {
  transform: translateX(6px);
}

.seerah-wrap .info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.seerah-wrap .info-item h4 {
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.seerah-wrap .info-item p {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}

/* ── BRANCH CARDS ── */
.seerah-wrap .branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.seerah-wrap .branch-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--red);
}

.seerah-wrap .branch-card > i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 14px;
}

.seerah-wrap .branch-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.seerah-wrap .branch-card p {
  font-size: .87rem;
  color: var(--muted);
}

/* ── SCROLL REVEAL ── */
.seerah-wrap .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.seerah-wrap .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.seerah-wrap .reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .65s ease, transform .65s ease;
}

.seerah-wrap .reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.seerah-wrap .reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .65s ease, transform .65s ease;
}

.seerah-wrap .reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.seerah-wrap .delay-1 { transition-delay: .1s !important; }
.seerah-wrap .delay-2 { transition-delay: .2s !important; }
.seerah-wrap .delay-3 { transition-delay: .3s !important; }
.seerah-wrap .delay-4 { transition-delay: .4s !important; }
.seerah-wrap .delay-5 { transition-delay: .5s !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .seerah-wrap section         { padding: 64px 0; }
  .seerah-wrap .grid-2         { grid-template-columns: 1fr; gap: 32px; }
  .seerah-wrap .grid-3         { grid-template-columns: 1fr; }
  .seerah-wrap .contact-form   { padding: 28px 20px; }
  .seerah-wrap .input-row      { grid-template-columns: 1fr; }
  .seerah-wrap .info-box       { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .seerah-wrap *,
  .seerah-wrap *::before,
  .seerah-wrap *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}/* End custom CSS */