/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Hero Section */
.contact-hero {
  position: relative;
  background-color: #E1F1F6;
  padding: 60px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #2B4E5B;
}

.breadcrumb-trail a {
  color: #F28C53;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.breadcrumb-trail a:hover {
  color: #2B4E5B;
}

.breadcrumb-trail i {
  font-size: 0.7rem;
  color: #9AD1D4;
}

.contact-hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  color: #2B4E5B;
  margin-bottom: 15px;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  color: #4B8B9B;
  max-width: 600px;
  margin: 0 auto;
}

.contact-doodle {
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

.contact-doodle-star { top: 15%; left: 10%; }
.contact-doodle-circle { top: 60%; right: 15%; animation-delay: 1s; }
.contact-doodle-dots { top: 20%; right: 8%; animation-delay: 2s; }
.contact-doodle-zigzag { bottom: 20%; left: 15%; animation-delay: 0.5s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.contact-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* Main Contact Section */
.contact-main {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Info Cards */
.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: #FFF9EE;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card { background-color: #FFF2E6; }
.phone-card { background-color: #E6F7F0; }
.email-card { background-color: #F3E6F7; }

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #FFF;
  flex-shrink: 0;
}
.location-card .icon-circle { background-color: #F28C53; box-shadow: 0 4px 10px rgba(242,140,83,0.3); }
.phone-card .icon-circle { background-color: #66C2A5; box-shadow: 0 4px 10px rgba(102,194,165,0.3); }
.email-card .icon-circle { background-color: #9C77C0; box-shadow: 0 4px 10px rgba(156,119,192,0.3); }

.info-content {
  flex-grow: 1;
}

.info-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: #2B4E5B;
  margin-bottom: 5px;
}

.info-card-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #4B8B9B;
  line-height: 1.5;
}

.info-card-text a {
  color: #4B8B9B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.info-card-text a:hover {
  color: #F28C53;
}

/* Social Links */
.social-links-wrapper {
  margin-top: 25px;
}

.social-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: #2B4E5B;
  margin-bottom: 15px;
}

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

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}

.social-icon:hover {
  transform: scale(1.15) rotate(-5deg);
}

.social-icon.fb { background-color: #3b5998; }
.social-icon.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.yt { background-color: #ff0000; }
.social-icon.web { background-color: #008080; }

/* Map */
.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 4px solid #F6F6F6;
}

/* Contact Form Box */
.contact-form-box {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border: 1px solid #EAEAEA;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.form-icon {
  width: 50px;
  height: 50px;
  background-color: #EAF4FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A90E2;
  font-size: 1.5rem;
}

.form-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  color: #2B4E5B;
  margin-bottom: 5px;
}

.form-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #6C8B99;
}

.form-row {
  display: flex;
  gap: 20px;
}
.form-row .input-group { flex: 1; }

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #4A90E2;
  font-size: 1.1rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 15px 15px 50px;
  background-color: #F4F8FA;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #2B4E5B;
  transition: border-color 0.3s, background-color 0.3s;
}
.input-group textarea {
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #4A90E2;
  background-color: #FFF;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Highlights Section */
.highlights-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.highlight-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding-right: 15px;
  border-right: 1px solid #EAEAEA;
}
.highlight-box:last-child {
  border-right: none;
  padding-right: 0;
}

.highlight-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.blue-icon { background-color: #EAF4FA; color: #4A90E2; }
.green-icon { background-color: #E6F7F0; color: #66C2A5; }
.purple-icon { background-color: #F3E6F7; color: #9C77C0; }
.orange-icon { background-color: #FFF2E6; color: #F28C53; }

.highlight-text h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: #2B4E5B;
  margin-bottom: 5px;
}

.highlight-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #6C8B99;
  line-height: 1.4;
  margin-bottom: 10px;
}

.highlight-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.3s;
}
.green-icon + .highlight-text .highlight-link { color: #66C2A5; }
.purple-icon + .highlight-text .highlight-link { color: #9C77C0; }
.orange-icon + .highlight-text .highlight-link { color: #F28C53; }

.highlight-link:hover {
  text-decoration: underline;
}

/* Animations */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
  opacity: 1;
  transform: translate(0);
}

.contact-footer {
  background-color: #2B4E5B;
  padding: 60px 20px 20px;
  color: #E1F1F6;
  text-align: center;
}
.contact-footer .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-tagline { font-family: 'Nunito', sans-serif; font-size: 1.1rem; margin-top: 10px; }
.footer-links { display: flex; gap: 20px; font-family: 'Fredoka', sans-serif; font-size: 1.1rem; }
.footer-links a { color: #FBD1A2; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #F28C53; }
.footer-copy { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; font-family: 'Nunito', sans-serif; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 1100px) {
  .highlights-section {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .highlight-box {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .contact-hero-title { font-size: 2.8rem; }
}

@media (max-width: 600px) {
  .contact-hero-title { font-size: 2.2rem; }
  .contact-form-box { padding: 25px; }
  .highlights-section { grid-template-columns: 1fr; gap: 20px; }
}
