/* Custom CSS for Contact Us Page - LENT WORKS LLC */

/* CSS Variables */
:root {
  --Primary-Blue-Dark-Blue: #001f33;
  --Primary-Blue-Medium-Blue: #003d66;
  --Primary-Blue-Light-Blue: #87ceeb;
  --Accent-Yellow: #ffea00;
  --Text-Dark: #333333;
  --Text-Light: #666666;
  --Background-Light: #f8f9fa;
  --White: #ffffff;
  --Black: #000000;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: var(--Primary-Blue-Dark-Blue, #001f33);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Container Responsive Spacing */
.container {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 576px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .container {
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Header Styles */
.transparent-header {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 0;
  animation: slideDown 0.8s ease-out;
}

.transparent-header:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-brand img {
  filter: brightness(1.2) contrast(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Right side menu styling */
.right-menu-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.button-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.button-row .btn {
  flex: 1;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.button-row .btn-primary {
  background: #007bff;
  border: none;
}

.button-row .btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.button-row .btn-outline-light:hover {
  background: #ffffff;
  color: #001f33;
  transform: translateY(-2px);
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  border: none;
  border-radius: 10px;
  margin-top: 0.5rem;
  min-width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  animation: dropdownFadeIn 0.3s ease forwards;
  padding: 10px 0;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-header {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px 15px 20px;
  border-bottom: 1px solid #34495e;
  margin-bottom: 10px;
}

/* Services Dropdown */
.services-dropdown {
  min-width: 400px;
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-dropdown::-webkit-scrollbar {
  display: none;
}

.services-dropdown .dropdown-item {
  color: #ffffff !important;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 6px;
  margin: 2px 8px;
  font-size: 0.9rem;
}

.services-dropdown .dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  transform: translateX(5px);
}

.services-dropdown .dropdown-item i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
  color: #007bff;
}

/* FAQ Dropdown */
.faq-dropdown {
  min-width: 300px;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq-dropdown::-webkit-scrollbar {
  display: none;
}

.option-selector {
  padding: 10px 0;
}

.option-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.option-item:hover {
  background-color: rgba(0, 123, 255, 0.1);
  transform: translateX(5px);
}

.option-item input[type="radio"] {
  margin-right: 12px;
  accent-color: #007bff;
  transform: scale(1.1);
}

.option-item label {
  color: #ffffff;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.option-item:hover label {
  color: #007bff;
}

.select-btn {
  margin-top: 12px;
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Industries & Technologies Dropdown */
.industries-dropdown,
.technologies-dropdown {
  min-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industries-dropdown::-webkit-scrollbar,
.technologies-dropdown::-webkit-scrollbar {
  display: none;
}

.dropdown-item-text {
  color: #ffffff;
  padding: 10px 20px;
  display: block;
  cursor: default;
  border-radius: 6px;
  margin: 2px 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item-text:hover {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
  transform: translateX(5px);
}

.dropdown-item-text i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.dropdown-item-text:hover i {
  color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type i {
  color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type:hover i {
  color: #007bff;
}

/* Default dropdown item styling for backward compatibility */
.dropdown-item {
  color: #ffffff !important;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  transform: translateX(5px);
}
:root {
  --Primary-Blue-Dark-Blue: #001f33;
  --Primary-Blue-Medium-Blue: #003d66;
  --Primary-Blue-Light-Blue: #87ceeb;
  --Accent-Yellow: #ffea00;
  --Text-Dark: #333333;
  --Text-Light: #666666;
  --Background-Light: #f8f9fa;
  --White: #ffffff;
  --Black: #000000;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Header Styles */
.transparent-header {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 0;
  animation: slideDown 0.8s ease-out;
}

.transparent-header:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: var(--Primary-Blue-Dark-Blue, #001f33) !important;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-brand img {
  filter: brightness(1.2) contrast(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Right side menu styling */
.right-menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-nav-links {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}

.top-nav-links .nav-link {
  font-size: 0.85rem;
  margin: 0;
  padding: 0.2rem 0.5rem;
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.top-nav-links .nav-link:hover {
  color: #007bff !important;
  transform: translateY(-1px);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: white !important;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.2) !important;
  color: #007bff !important;
}

.btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url("/images/public\assestlanding\images\contactus.png"); */
  background-size: 100% 100%;
  margin: 0;
  padding: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  animation: slideInRight 1.2s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  animation: slideInRight 1.2s ease-out 0.2s both;
}

/* Footer Section */
/* Footer Section */
.footer-section {
  background: #001f33;
  padding: 60px 0 30px;
  color: #ffffff;
  position: relative;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo a:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  width: 180px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-description.limited-width {
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #ffea00;
  padding-left: 5px;
}

.footer-link.underlined {
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #001f33;
  color: #87ceeb;
  font-size: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2c5f7f;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-value:hover {
  color: #ffea00;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }

  .navbar-nav {
    text-align: center;
  }

  .right-menu-container {
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 20px;
  }

  .menu-section {
    width: 100%;
    max-width: 300px;
  }

  .dropdown-menu {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .transparent-header {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 0.5rem 0;
  }

  .navbar-nav {
    text-align: center;
    padding: 20px 0;
  }

  .right-menu-container {
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .menu-section {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
  }

  .button-row .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Mobile dropdown styling */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .dropdown-item {
    padding: 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background-color: rgba(0, 123, 255, 0.3) !important;
    color: #007bff !important;
  }

  /* Ensure dropdowns work in collapsed navbar */
  .navbar-collapse .dropdown {
    position: static;
  }

  /* Footer Mobile */
  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-logo-img {
    width: 150px;
    height: 65px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 40px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .menu-section {
    padding: 12px 15px;
  }

  .button-row .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .dropdown-menu {
    min-width: 250px;
  }

  /* Footer Extra Small */
  .footer-section {
    padding: 30px 0 15px;
  }

  .footer-logo-img {
    width: 120px;
    height: 50px;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}

/* Navbar Scrolled State - Blue theme background */
.navbar.scrolled {
  background: rgba(0, 31, 51, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 31, 51, 0.3);
}
/* Small Mobile Screens (320px to 575px) */
@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    padding: 1rem;
  }

  /* Header styles for small mobile */
  .navbar-brand img {
    width: 120px;
    height: auto;
  }

  .navbar-toggler {
    font-size: 1.2rem;
    padding: 0.4rem;
  }

  /* Footer small mobile */
  .footer-section {
    padding: 30px 0 15px;
  }

  .footer-logo-img {
    width: 150px;
    height: 65px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Extra Small Mobile Screens (320px and below) */
@media (max-width: 320px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .footer-section {
    padding: 25px 0 10px;
  }

  .footer-logo-img {
    width: 130px;
    height: 55px;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* Contact Information Section */
.contact-info-section {
  background: var(--Primary-Blue-Dark-Blue, #001f33);
  padding: 80px 0;
  color: #ffffff;
}

.company-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 1px;
}

.office-location {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.office-location:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-icon {
  width: 50px;
  height: 50px;
  background: var(--Primary-Blue-Light-Blue, #87ceeb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Primary-Blue-Dark-Blue, #001f33);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-details {
  flex: 1;
}

.location-address {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.outsourcing-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.registered-address {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.address-label {
  margin-bottom: 15px;
}

.regd-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--Primary-Blue-Light-Blue, #87ceeb);
  letter-spacing: 0.5px;
}

.address-content {
  margin-top: 10px;
}

.regd-address {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.business-hours-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.business-hours {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.time {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

/* Contact Information Section Responsive */
@media (max-width: 992px) {
  .contact-info-section {
    padding: 60px 0;
  }

  .company-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .outsourcing-title,
  .business-hours-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .office-location {
    padding: 25px;
  }

  .registered-address,
  .business-hours {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 50px 0;
  }

  .company-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .outsourcing-title,
  .business-hours-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .office-location {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .location-icon {
    align-self: center;
  }

  .registered-address,
  .business-hours {
    padding: 20px;
  }

  .hours-row {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .contact-info-section {
    padding: 40px 0;
  }

  .company-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .outsourcing-title,
  .business-hours-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .office-location {
    padding: 15px;
  }

  .location-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .location-address,
  .regd-address {
    font-size: 0.9rem;
  }

  .registered-address,
  .business-hours {
    padding: 15px;
  }

  .day,
  .time {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .company-title {
    font-size: 1.4rem;
  }

  .outsourcing-title,
  .business-hours-title {
    font-size: 1.2rem;
  }

  .location-address,
  .regd-address,
  .day,
  .time {
    font-size: 0.85rem;
  }
}

/* Contact Form Section */
.contact-form-section {
  background: var(--Primary-Blue-Dark-Blue, #001f33);
  padding: 80px 0;
  position: relative;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 51, 0.95),
    rgba(0, 61, 102, 0.95)
  );
  z-index: 1;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Form Labels */
.contact-form .form-label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.5px;
}

/* Form Controls */
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  padding: 16px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--Primary-Blue-Light-Blue, #87ceeb);
  box-shadow: 0 0 0 0.2rem rgba(135, 206, 235, 0.25);
  color: #ffffff;
  outline: none;
}

.contact-form .form-select option {
  background: var(--Primary-Blue-Dark-Blue, #001f33);
  color: #ffffff;
}

/* Textarea */
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Checkbox */
.contact-form .form-check {
  margin-bottom: 0;
}

.contact-form .form-check-input {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.contact-form .form-check-input:checked {
  background: var(--Primary-Blue-Light-Blue, #87ceeb);
  border-color: var(--Primary-Blue-Light-Blue, #87ceeb);
}

.contact-form .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(135, 206, 235, 0.25);
}

.contact-form .form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-left: 8px;
}

.privacy-link {
  color: var(--Primary-Blue-Light-Blue, #87ceeb);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
  background: linear-gradient(
    135deg,
    var(--Primary-Blue-Light-Blue, #87ceeb),
    var(--Primary-Blue-Medium-Blue, #003d66)
  );
  border: none;
  border-radius: 50px;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 200px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
  letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
  background: linear-gradient(
    135deg,
    var(--Primary-Blue-Medium-Blue, #003d66),
    var(--Primary-Blue-Dark-Blue, #001f33)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(135, 206, 235, 0.4);
  color: #ffffff;
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

/* Success and Error Messages */
.success-message,
.error-message {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.5s ease-out;
}

.success-message {
  border-left: 4px solid #28a745;
}

.error-message {
  border-left: 4px solid #dc3545;
}

.success-icon,
.error-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.success-icon {
  color: #28a745;
}

.error-icon {
  color: #dc3545;
}

.success-title,
.error-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.success-text,
.error-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Contact Form Responsive Design */
@media (max-width: 991px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-title {
    font-size: 2.2rem;
  }

  .contact-form-container {
    padding: 40px 30px;
  }

  .contact-submit-btn {
    min-width: 180px;
    padding: 16px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 50px 0;
  }

  .contact-form-title {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }

  .contact-form-subtitle {
    font-size: 1rem;
  }

  .contact-form-container {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .contact-form .form-label {
    font-size: 0.9rem;
  }

  .contact-submit-btn {
    width: 100%;
    min-width: auto;
    padding: 16px 30px;
  }

  .success-message,
  .error-message {
    padding: 25px 20px;
  }

  .success-icon,
  .error-icon {
    font-size: 2.5rem;
  }

  .success-title,
  .error-title {
    font-size: 1.3rem;
  }
}

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

  .contact-form-title {
    font-size: 1.7rem;
  }

  .contact-form-subtitle {
    font-size: 0.95rem;
  }

  .contact-form-container {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .contact-form .form-label {
    font-size: 0.85rem;
  }

  .contact-form .form-check-label {
    font-size: 0.85rem;
  }

  .contact-form textarea.form-control {
    min-height: 120px;
  }

  .contact-submit-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }

  .success-message,
  .error-message {
    padding: 20px 15px;
  }

  .success-icon,
  .error-icon {
    font-size: 2rem;
  }

  .success-title,
  .error-title {
    font-size: 1.2rem;
  }

  .success-text,
  .error-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .contact-form-title {
    font-size: 1.5rem;
  }

  .contact-form-subtitle {
    font-size: 0.9rem;
  }

  .contact-form-container {
    padding: 25px 15px;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .contact-form .form-label {
    font-size: 0.8rem;
  }

  .contact-form .form-check-label {
    font-size: 0.8rem;
  }

  .contact-submit-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Get In Touch Section */
.get-in-touch-section {
  background: linear-gradient(135deg, #154667 0%, #001f33 100%);
  padding: 80px 0;
  color: #ffffff;
}

.get-in-touch-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 1px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--Primary-Blue-Light-Blue, #87ceeb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Primary-Blue-Dark-Blue, #001f33);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-method-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-method-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.contact-method-value {
  font-size: 1.1rem;
  color: var(--Primary-Blue-Light-Blue, #87ceeb);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 5px;
}

.contact-method-value:hover {
  color: #ffffff;
  text-decoration: underline;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-numbers .contact-method-value:last-child {
  margin-bottom: 0;
}

/* Get In Touch Section Responsive */
@media (max-width: 992px) {
  .get-in-touch-section {
    padding: 60px 0;
  }

  .get-in-touch-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .contact-methods {
    gap: 30px;
  }

  .contact-method {
    padding: 25px;
  }

  .contact-method-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .get-in-touch-section {
    padding: 50px 0;
  }

  .get-in-touch-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .contact-methods {
    gap: 25px;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .contact-method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    align-self: center;
  }

  .contact-method-info {
    align-items: center;
    text-align: center;
  }

  .contact-method-label {
    font-size: 1.1rem;
  }

  .contact-method-value {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .get-in-touch-section {
    padding: 40px 0;
  }

  .get-in-touch-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-methods {
    gap: 20px;
  }

  .contact-method {
    padding: 15px;
    gap: 15px;
  }

  .contact-method-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-method-label {
    font-size: 1rem;
  }

  .contact-method-value {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .get-in-touch-title {
    font-size: 1.4rem;
  }

  .contact-method {
    padding: 12px;
  }

  .contact-method-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-method-label {
    font-size: 0.95rem;
  }

  .contact-method-value {
    font-size: 0.9rem;
  }
}
