/* =========================================
   1. Global Adjustments for this page
   ========================================= */
body {
  font-family: var(--font-work);
  color: #444;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 120px 0;
}

.bg-light {
  background-color: #f9f9f9;
}

/* =========================================
   2. Modern Contact Hub Styles
   ========================================= */
.contact-hub-section {
  background: #fcfbff;
  padding: 120px 0;
}

.contact-card-premium {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(10, 13, 84, 0.06);
}

@media (max-width: 991px) {
  .contact-card-premium { flex-direction: column; }
}

/* Info Panel (Left) */
.contact-info-panel {
  flex: 0 0 40%;
  position: relative;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
}

.panel-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.panel-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 13, 84, 0.96) 0%, rgba(10, 13, 84, 0.85) 100%);
  z-index: 2;
}

.panel-inner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.badge-sub-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  backdrop-filter: blur(5px);
}

.panel-inner-content .section-header {
  margin-bottom: 30px;
}

.panel-inner-content .section-header h2 {
    color: #fff !important;
}

.panel-inner-content .section-header h2 span {
  color: var(--primary-color);
}

.contact-link-grid {
  margin: 40px 0;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.link-card:hover {
  transform: translateX(10px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 15px rgba(253, 116, 80, 0.3);
}

.card-text .label {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.card-text p {
  color: #fff;
  font-size: 17px;
  font-family: var(--font-work);
  font-weight: 400;
  margin: 0;
}

.panel-social-footer p {
  color: #fff;
  font-family: var(--font-outfit);
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.social-circles {
  display: flex;
  gap: 12px;
}

.social-circles a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-circles a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Form Panel (Right) */
.contact-form-panel {
  flex: 1;
  padding: 80px;
  background: #fff;
}

@media (max-width: 576px) { .contact-form-panel { padding: 40px 25px; } }

.form-header-premium {
  margin-bottom: 40px;
}

.form-header-premium h3 {
  font-family: var(--font-playfair);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.form-header-premium p {
  color: #666;
}

.premium-travel-form .input-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 576px) { .premium-travel-form .input-row-modern { grid-template-columns: 1fr; gap: 0; } }

.input-wrapper-modern {
  position: relative;
  margin-bottom: 35px;
}

.premium-travel-form input,
.premium-travel-form select,
.premium-travel-form textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-family: var(--font-work);
  font-size: 15px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.premium-travel-form textarea {
    resize: none;
}

.input-border-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.4s ease;
}

.input-wrapper-modern input:focus ~ .input-border-accent,
.input-wrapper-modern select:focus ~ .input-border-accent,
.input-wrapper-modern textarea:focus ~ .input-border-accent {
  width: 100%;
}

.submit-button-premium {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 20px 50px;
  border-radius: 50px;
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 15px 30px rgba(10, 13, 84, 0.15);
}

.submit-button-premium:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(253, 116, 80, 0.2);
}

.submit-button-premium i { transition: 0.3s; }
.submit-button-premium:hover i { transform: translate(5px, -5px); }

/* Map */
.budget-map {
    margin-bottom: -5px; /* Removes weird iframe bottom gap */
}/*# sourceMappingURL=styles.css.map */