* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background-color: #f8f9fc;
  color: #333;
}

/* ========================================
   NAVBAR OVERRIDE FOR LIGHT THEME
   ======================================== */
.main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ========================================
   HERO SECTION
   ======================================== */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6b73ff 100%);
  padding: 140px 8% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 197, 18, 0.15);
  color: #f4c512;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(244, 197, 18, 0.3);
  animation: fadeInDown 0.8s ease;
}

.hero-badge i {
  font-size: 16px;
}

.contact-hero h1 {
  color: white;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #f4c512;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #fff;
  bottom: 50px;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #f4c512;
  bottom: 100px;
  right: 15%;
  animation: float 7s ease-in-out infinite;
}

/* ========================================
   JOIN US SECTION
   ======================================== */
.join-section {
  background: linear-gradient(135deg, #f4c512 0%, #ffd700 100%);
  padding: 60px 8%;
  position: relative;
  overflow: hidden;
}

.join-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.join-content {
  flex: 1;
  text-align: center;
}

.join-icon {
  width: 80px;
  height: 80px;
  background: rgba(12, 25, 49, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: bounce 2s ease infinite;
}

.join-icon i {
  font-size: 36px;
  color: #0c1931;
}

.join-content h2 {
  font-size: 36px;
  color: #0c1931;
  margin-bottom: 15px;
}

.join-content p {
  color: #0c1931;
  font-size: 18px;
  margin-bottom: 10px;
}

.join-sub {
  opacity: 0.8;
  font-size: 16px !important;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0c1931;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(12, 25, 49, 0.3);
}

.join-btn:hover {
  background: #25316e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(12, 25, 49, 0.4);
}

.join-btn i {
  transition: transform 0.3s ease;
}

.join-btn:hover i {
  transform: translateX(5px);
}

.join-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-icon {
  position: absolute;
  font-size: 24px;
  color: rgba(12, 25, 49, 0.15);
  animation: floatIcon 4s ease-in-out infinite;
}

.float-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.float-icon:nth-child(2) {
  top: 60%;
  left: 5%;
  animation-delay: 1s;
}
.float-icon:nth-child(3) {
  top: 30%;
  right: 10%;
  animation-delay: 0.5s;
}
.float-icon:nth-child(4) {
  top: 70%;
  right: 5%;
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ========================================
   CONTACT MAIN SECTION
   ======================================== */
.contact-main {
  background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
  padding: 80px 8%;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 15px;
}

.section-header h2 {
  color: #25316e;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #25316e;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: #667eea;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: #f8f9fc;
  border: 2px solid #e8ecf4;
  border-radius: 12px;
  color: #333;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #667eea;
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-group label {
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.recaptcha-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recaptcha-wrapper p {
  color: #666;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recaptcha-wrapper p i {
  color: #667eea;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  width: fit-content;
  margin: 0 auto;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.info-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 35px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-header {
  margin-bottom: 30px;
}

.info-header h3 {
  color: #25316e;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.info-header h3 i {
  color: #667eea;
}

.info-header p {
  color: #666;
  font-size: 14px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-icon i {
  font-size: 20px;
  color: #667eea;
  transition: color 0.3s ease;
}

.info-item:hover .info-icon i {
  color: white;
}

.info-content span {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-content p {
  color: #25316e;
  font-size: 15px;
  font-weight: 500;
  margin-top: 3px;
}

.info-content small {
  color: #888;
  font-size: 13px;
}

.social-connect {
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-connect > span {
  color: #666;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon i {
  font-size: 18px;
  color: white;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0a5dc2);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon.lens {
  background: linear-gradient(135deg, #25316e, #1a2454);
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-header {
  padding: 20px 25px;
  background: rgba(244, 197, 18, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-header h4 {
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-header h4 i {
  color: #f4c512;
}

.map-wrapper {
  width: 100%;
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   RESPONSE BANNER
   ======================================== */
.response-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 8%;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon i {
  font-size: 24px;
  color: white;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.banner-text h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 5px;
}

.banner-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.banner-emoji {
  font-size: 40px;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-20deg);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 42px;
  }

  .join-container {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 5% 60px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .join-section {
    padding: 50px 5%;
  }

  .join-content h2 {
    font-size: 28px;
  }

  .contact-main {
    padding: 60px 5%;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .form-card {
    padding: 30px 20px;
  }

  .info-side {
    grid-template-columns: 1fr;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .banner-text h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 26px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 18px;
  }

  .join-icon {
    width: 60px;
    height: 60px;
  }

  .join-icon i {
    font-size: 28px;
  }

  .join-content h2 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
  }

  .submit-btn {
    padding: 15px 30px;
    font-size: 14px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
