/* Contact Section */
:root {
  --primary: #113f67;
  --primary-light: hsl(208, 56%, 38%);
  --primary-dark: #01294c;
  --secondary: #2c3e50;
  --light: #f8f5f2;
  --dark: #1a1a1a;
  --gray: #6c757d;
  --light-gray: #e9e9e9;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.terms-content { 
padding: 0px !important;
}
.contact-section {
background: #ffffff !important;
margin: 0px;
}

.contact-section h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  animation: fadeIn 1s ease;
}

.contact-section h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  animation: expandLine 1s ease forwards;
}

.contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-card:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.6s;
}

.contact-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.contact-card:hover:before {
  opacity: 1;
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.contact-card:hover i {
  transform: scale(1.2);
  color: var(--light-gray);
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
  display: block;
  margin-top: 15px;
}

.contact-card:hover a {
  color: var(--light-gray);
}

/* Additional decorative elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  background: rgba(17, 63, 103, 0.05);
  border-radius: 50%;
  animation: floatSlow 20s infinite linear;
}

@for $i from 1 through 5 {
  .floating-element:nth-child(#{$i}) {
    width: #{random(100) + 50}px;
    height: #{random(100) + 50}px;
    top: #{random(100)}%;
    left: #{random(100)}%;
    animation-delay: #{random(10)}s;
    animation-duration: #{random(20) + 20}s;
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) translateX(50px) rotate(180deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-card {
    width: 100%;
    max-width: 300px;
  }
  
  .main-arrival-box-heading h4 {
    font-size: 2rem;
  }
}