/* CONTACT PAGE */

.contact-page {
  background: #f8f9fc;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #0b2f59 0%, #0a3c72 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Contact Methods */
.contact-methods {
  padding: 60px 0;
  background: white;
}

.method-card {
  background: #f8f9fc;
  border: 2px solid #e5e9f2;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

.method-card:hover {
  border-color: #0a3c72;
  background: white;
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f4ff, #d1ecf1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a3c72;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon {
  background: linear-gradient(135deg, #0a3c72, #0b2f59);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.method-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: #0b2f59;
  margin-bottom: 10px;
}

.method-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

.method-card a {
  font-size: 16px;
  font-weight: 700;
  color: #0a3c72;
  text-decoration: none;
  transition: color 0.3s ease;
}

.method-card a:hover {
  color: #e6a01b;
}

/* Main Contact Section */
.contact-main {
  padding: 60px 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0b2f59;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0b2f59;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e5e9f2;
  border-radius: 8px;
  font-size: 15px;
  color: #0b2f59;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a3c72;
  background: #f8f9fc;
  box-shadow: 0 0 0 4px rgba(10, 60, 114, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.char-count {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #0b2f59;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0a3c72;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #e2a02b, #cf8507);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230, 160, 27, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 160, 27, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit.loading {
  background: #6c757d;
  cursor: not-allowed;
}

.btn-submit.success {
  background: #28a745;
}

/* Contact Info Sidebar */
.contact-info {
  position: sticky;
  top: 100px;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-icon {
  color: #0a3c72;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.info-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #0b2f59;
  margin: 0;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 8px;
}

.info-card ul li strong {
  color: #0b2f59;
  font-weight: 700;
}

.info-card p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-directions {
  display: inline-block;
  background: #f8f9fc;
  border: 2px solid #e5e9f2;
  color: #0a3c72;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-directions:hover {
  border-color: #0a3c72;
  background: white;
  transform: translateX(5px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: #f8f9fc;
  border: 2px solid #e5e9f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a3c72;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

.social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
  color: white;
}

/* Quick Links */
.quick-links-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-links li a {
  display: block;
  padding: 10px 15px;
  background: #f8f9fc;
  border: 2px solid #e5e9f2;
  border-radius: 8px;
  color: #0b2f59;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-links li a:hover {
  border-color: #0a3c72;
  background: white;
  transform: translateX(3px);
}

/* Map Section */
.map-section {
  padding: 60px 0;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.map-placeholder {
  position: relative;
  height: 450px;
  background: #e5e9f2;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 47, 89, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-placeholder:hover .map-overlay {
  opacity: 1;
}

.btn-view-map {
  background: linear-gradient(135deg, #e2a02b, #cf8507);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 160, 27, 0.4);
}

.btn-view-map:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(230, 160, 27, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .contact-info {
    position: static;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .contact-methods {
    padding: 50px 0;
  }

  .contact-main {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 35px;
    margin-bottom: 30px;
  }

  .map-placeholder {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .contact-methods {
    padding: 40px 0;
  }

  .method-card {
    padding: 35px 25px;
  }

  .method-icon {
    width: 70px;
    height: 70px;
  }

  .method-icon svg {
    width: 40px;
    height: 40px;
  }

  .contact-main {
    padding: 40px 0;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .info-card {
    padding: 25px;
  }

  .quick-links-card ul {
    grid-template-columns: 1fr;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-placeholder {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .method-card {
    padding: 30px 20px;
  }

  .method-card h3 {
    font-size: 20px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 14px 28px;
    font-size: 15px;
  }

  .info-card {
    padding: 20px;
  }

  .info-icon svg {
    width: 36px;
    height: 36px;
  }

  .info-card h3 {
    font-size: 18px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .map-placeholder {
    height: 300px;
  }

  .btn-view-map {
    padding: 14px 28px;
    font-size: 14px;
  }
}
