/* contact.module.css */

.contact_container__9rpmX {
  min-height: 100vh;
  background: #0f0f12;
  position: relative;
  overflow-x: hidden;
  
}

/* Background effects (matching login page) */
.contact_container__9rpmX::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(21, 101, 192, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(21, 101, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact_container__9rpmX::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Hero Section */
.contact_hero__9aizZ {
  background: linear-gradient(145deg, #0a0a0f, #111116);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(21, 101, 192, 0.15);
}

.contact_hero__9aizZ::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(21, 101, 192, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact_hero__9aizZ h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  position: relative;
  animation: contact_fadeInDown__ANFOh 0.8s ease;
  background: linear-gradient(to right, #fff, #b0d0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.contact_hero__9aizZ p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  animation: contact_fadeInUp__30Sv5 0.8s ease;
  color: #a0a3b1;
}

/* Content Section */
.contact_content__zh4yP {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
}

/* Info Cards Grid */
.contact_infoGrid__AYXfE {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact_infoCard__Wo8z9 {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(21, 101, 192, 0.15);
  position: relative;
  overflow: hidden;
}

.contact_infoCard__Wo8z9::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(21, 101, 192, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact_infoCard__Wo8z9:hover {
  transform: translateY(-5px);
  border-color: #1565c0;
  box-shadow: 0 30px 60px -15px rgba(21, 101, 192, 0.3);
}

.contact_infoCard__Wo8z9:hover::before {
  opacity: 1;
}

.contact_icon__qBtLe {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  background: rgba(21, 101, 192, 0.1);
  padding: 1rem;
  border-radius: 60px;
  border: 1px solid rgba(21, 101, 192, 0.3);
  box-shadow: 0 0 15px rgba(21, 101, 192, 0.2);
}

.contact_infoCard__Wo8z9 h3 {
  margin: 0 0 0.8rem 0;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact_infoCard__Wo8z9 p {
  margin: 0.3rem 0;
  color: #a0a3b1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact_small__m8oPv {
  font-size: 0.8rem;
  color: #6a6f82 !important;
}

.contact_chatButton__yp5bC {
  background: #1565c0;
  color: white;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.4);
  display: inline-block;
  text-decoration: none;
}

.contact_chatButton__yp5bC:hover {
  background: #0e4e9a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.6);
}

.contact_chatButtonContainer__A7uf0 {
  padding-top: 1.2rem;
}

/* Form & Map Grid */
.contact_formMapGrid__OspCG {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

/* Form Container */
.contact_formContainer__pYa75 {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.8rem;
  padding: 2.2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(21, 101, 192, 0.15);
}

.contact_formContainer__pYa75 h2 {
  margin: 0 0 1.8rem 0;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact_form__NQ_J_ {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact_formRow__1m8SK {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact_formGroup__1n_It {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact_formGroup__1n_It label {
  font-weight: 500;
  color: #a0a3b1;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.contact_formGroup__1n_It input,
.contact_formGroup__1n_It select,
.contact_formGroup__1n_It textarea {
  padding: 0.85rem 1.2rem;
  background: #16161e;
  border: 1px solid #2a2a34;
  border-radius: 60px;
  font-size: 0.95rem;
  transition: all 0.15s ease;
  color: white;
  font-family: inherit;
}

.contact_formGroup__1n_It textarea {
  border-radius: 1.5rem;
  resize: vertical;
  min-height: 120px;
}

.contact_formGroup__1n_It input:focus,
.contact_formGroup__1n_It select:focus,
.contact_formGroup__1n_It textarea:focus {
  outline: none;
  border-color: #1565c0;
  background: #1a1a24;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.2);
}

.contact_formGroup__1n_It input:hover,
.contact_formGroup__1n_It select:hover,
.contact_formGroup__1n_It textarea:hover {
  border-color: #1565c0;
}

.contact_formGroup__1n_It input::placeholder,
.contact_formGroup__1n_It textarea::placeholder {
  color: #5f6478;
}

.contact_formGroup__1n_It select {
  color: white;
  cursor: pointer;
}

.contact_formGroup__1n_It select option {
  background: #16161e;
  color: white;
}

.contact_submitButton__z587M {
  background: #1565c0;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.4);
}

.contact_submitButton__z587M:hover:not(:disabled) {
  background: #0e4e9a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.6);
}

.contact_submitButton__z587M:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Messages */
.contact_successMessage__mwhrf {
  background: rgba(21, 101, 192, 0.1);
  color: #90caf9;
  padding: 1rem 1.2rem;
  border-radius: 60px;
  margin-bottom: 1.5rem;
  border: 1px solid #1565c0;
  animation: contact_slideIn__A50M1 0.3s ease;
  font-size: 0.95rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.contact_errorMessage__NPDex {
  background: rgba(220, 38, 38, 0.1);
  color: #fca5a5;
  padding: 1rem 1.2rem;
  border-radius: 60px;
  margin-bottom: 1.5rem;
  border: 1px solid #dc2626;
  animation: contact_slideIn__A50M1 0.3s ease;
  font-size: 0.95rem;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

/* Map Container */
.contact_mapContainer__UlpWp {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.8rem;
  padding: 2.2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(21, 101, 192, 0.15);
}

.contact_mapContainer__UlpWp h2 {
  margin: 0 0 1.5rem 0;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact_map__WdBqN {
  width: 100%;
  height: 280px;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(21, 101, 192, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.contact_map__WdBqN iframe {
  filter: grayscale(0.5) brightness(0.8);
  transition: filter 0.3s ease;
}

.contact_map__WdBqN iframe:hover {
  filter: grayscale(0) brightness(1);
}

/* Hours Card */
.contact_hoursCard__6Rm8o {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(21, 101, 192, 0.15);
}

.contact_hoursCard__6Rm8o h3 {
  margin: 0 0 1.2rem 0;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact_hoursGrid__VGKzp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact_hoursGrid__VGKzp p {
  margin: 0.2rem 0;
  color: #a0a3b1;
  font-size: 0.9rem;
}

.contact_hoursGrid__VGKzp strong {
  color: white;
  font-weight: 600;
}

/* FAQ Section */
.contact_faqSection__zqsTz {
  margin-top: 3.5rem;
}

.contact_faqSection__zqsTz h2 {
  text-align: center;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #fff, #b0d0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact_faqGrid__mAIDr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact_faqItem__55Zq9 {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1.8rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(21, 101, 192, 0.15);
}

.contact_faqItem__55Zq9:hover {
  transform: translateY(-5px);
  border-color: #1565c0;
  box-shadow: 0 30px 60px -15px rgba(21, 101, 192, 0.3);
}

.contact_faqItem__55Zq9 h3 {
  margin: 0 0 0.8rem 0;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact_faqItem__55Zq9 p {
  margin: 0;
  color: #a0a3b1;
  line-height: 1.6;
  font-size: 0.9rem;
}

.contact_faqCTA__RFlas {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, #0a0a0f, #111116);
  border-radius: 2rem;
  border: 1px solid rgba(21, 101, 192, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.contact_faqCTA__RFlas p {
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  color: white;
}

.contact_faqButton__RMD2X {
  display: inline-block;
  background: #1565c0;
  color: white;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.4);
}

.contact_faqButton__RMD2X:hover {
  background: #0e4e9a;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.6);
}

/* Animations */
@keyframes contact_fadeInDown__ANFOh {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes contact_slideIn__A50M1 {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact_faqGrid__mAIDr {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .contact_formMapGrid__OspCG {
    grid-template-columns: 1fr;
  }
  
  .contact_hero__9aizZ h1 {
    font-size: 2.2rem;
  }
  
  .contact_hero__9aizZ p {
    font-size: 1rem;
  }
  
  .contact_hoursGrid__VGKzp {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .contact_hero__9aizZ {
    padding: 2.5rem 1rem;
  }
  
  .contact_hero__9aizZ h1 {
    font-size: 1.8rem;
  }
  
  .contact_formRow__1m8SK {
    grid-template-columns: 1fr;
  }
  
  .contact_content__zh4yP {
    padding: 1.5rem 1rem;
  }
  
  .contact_infoGrid__AYXfE {
    gap: 1rem;
  }
  
  .contact_infoCard__Wo8z9 {
    padding: 1.5rem;
  }
  
  .contact_faqGrid__mAIDr {
    grid-template-columns: 1fr;
  }
  
  .contact_hoursGrid__VGKzp {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact_formContainer__pYa75,
  .contact_mapContainer__UlpWp {
    padding: 1.5rem;
  }
  
  .contact_formContainer__pYa75 h2,
  .contact_mapContainer__UlpWp h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact_hero__9aizZ h1 {
    font-size: 1.6rem;
  }
  
  .contact_hero__9aizZ p {
    font-size: 0.9rem;
  }
  
  .contact_infoGrid__AYXfE {
    grid-template-columns: 1fr;
  }
  
  .contact_icon__qBtLe {
    font-size: 2rem;
    padding: 0.8rem;
  }
  
  .contact_infoCard__Wo8z9 h3 {
    font-size: 1.1rem;
  }
  
  .contact_infoCard__Wo8z9 p {
    font-size: 0.85rem;
  }
  
  .contact_formGroup__1n_It input,
  .contact_formGroup__1n_It select,
  .contact_formGroup__1n_It textarea {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  
  .contact_submitButton__z587M {
    padding: 0.85rem;
    font-size: 0.95rem;
  }
  
  .contact_faqSection__zqsTz h2 {
    font-size: 1.8rem;
  }
  
  .contact_faqItem__55Zq9 {
    padding: 1.5rem;
  }
  
  .contact_faqItem__55Zq9 h3 {
    font-size: 1rem;
  }
  
  .contact_faqItem__55Zq9 p {
    font-size: 0.85rem;
  }
  
  .contact_faqCTA__RFlas {
    padding: 1.5rem;
  }
  
  .contact_faqCTA__RFlas p {
    font-size: 1rem;
  }
  
  .contact_faqButton__RMD2X {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Small height screens */
@media (max-height: 700px) {
  .contact_hero__9aizZ {
    padding: 2rem 1rem;
  }
  
  .contact_hero__9aizZ h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .contact_content__zh4yP {
    padding: 1.5rem 2rem;
  }
  
  .contact_infoGrid__AYXfE {
    margin-bottom: 2rem;
  }
  
  .contact_faqSection__zqsTz {
    margin-top: 2rem;
  }
}
