/* Modernized DMS Contact Styling with Premium Motion & Glassmorphism */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

* {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #0b0f19;
  background-image: 
    radial-gradient(at 10% 20%, rgba(0, 242, 254, 0.15) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(79, 172, 254, 0.15) 0px, transparent 50%),
    url("../../images/Image_9.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Background Motion Drift */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.75) 0%, rgba(17, 24, 39, 0.75) 100%);
  z-index: -1;
}

/* Navigation Bar */
body .navigation-bar {
  background-color: rgba(11, 15, 25, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 30px;
}

body .navigation-bar .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  margin: 0 10px;
  position: relative;
}

body .navigation-bar .nav-link:hover {
  color: #00f2fe;
}

body .navigation-bar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  transition: width 0.3s ease;
}

body .navigation-bar .nav-link:hover::after {
  width: 100%;
}

body .navigation-bar .nav-link.active-page {
  color: #00f2fe !important;
  font-weight: 700;
}

body .navigation-bar .nav-link.active-page::after {
  width: 100%;
}

body .row {
  height: calc(100vh - 80px);
}

/* Fade-In Up Motion */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Column — Page Title */
body .page-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body .page-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Company Info Details */
.company-info {
  padding: 20px 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 14px;
}

.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  color: rgba(0, 242, 254, 0.8);
}

.info-text p {
  font-size: 16px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 500;
}

/* Right Column — Glassmorphic Card */
body .card {
  max-width: 480px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: auto;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

body .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.3);
}

body .card .card-header {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 30px 15px;
}

body .card .card-header h5 {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 4px;
}

body .card .card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

body .card .card-body {
  padding: 30px 35px;
}

/* Form Controls & Textarea */
body .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  margin-bottom: 20px !important;
  transition: all 0.3s ease;
}

body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

body .form-control:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #00f2fe !important;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25) !important;
  transform: scale(1.01);
  outline: none;
}

body textarea.form-control {
  resize: none;
  min-height: 100px;
  border-radius: 10px;
  padding: 12px 18px;
}

/* Submit Button */
body .btn-submit {
  width: 100%;
  background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #0b0f19;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

body .btn-submit:hover {
  background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
  color: #0b0f19;
}

body .btn-submit:active {
  transform: translateY(0);
}

/* Input Row (Two Columns) */
.input-row {
  display: flex;
  gap: 16px;
}

.input-row .form-control {
  flex: 1;
}

/* Divider */
.card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #00f2fe;
  transform: translateY(-2px);
}

.social-links a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.3s ease;
}

.social-links a:hover svg {
  fill: #0b0f19;
}

/* Responsive */
@media (max-width: 991px) {
  body .row {
    height: auto;
    padding: 40px 0;
  }

  body .page-title {
    font-size: 36px;
    text-align: center;
  }

  body .page-subtitle {
    text-align: center;
  }

  .company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
    justify-content: center;
    margin-bottom: 20px;
  }

  body .card {
    max-width: 100%;
    margin: 0 auto;
  }
}