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

:root {
  --navy: #0a1628;
  --navy-light: #132238;
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --shadow-md: 0 10px 30px rgba(10, 22, 40, 0.1);
  --gold: #c9a227;
  --gold-light: #e8c547;
  --teal: #2dd4bf;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
  --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
}

/* ============================================
   HERO SECTION
   ============================================ */
.contact-hero-section {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2b47 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Floating Bubbles */
.contact-hero-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-hero-bubble {
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  animation: floatBubble 15s infinite linear;
}

.contact-hero-bubble:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-duration: 20s;
}

.contact-hero-bubble:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-duration: 25s;
  animation-delay: 2s;
}

.contact-hero-bubble:nth-child(3) {
  top: 30%;
  right: 5%;
  animation-duration: 30s;
  animation-delay: 4s;
}

.contact-hero-bubble:nth-child(4) {
  bottom: 15%;
  left: 10%;
  animation-duration: 22s;
  animation-delay: 1s;
}

@keyframes floatBubble {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(40px, 10px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 40px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 900;
}

.contact-hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.8;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background: var(--gray-50);
}

.contact-wrapper {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Section Title */
.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem auto 2.5rem auto;
  max-width: 350px;
  min-width: 220px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(45, 212, 191, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-card-content {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.info-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.info-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.info-content a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--teal);
}

.info-content span {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.social-link {
  min-width: 36px;
  min-height: 36px;
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  border-radius: 8px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .info-card {
    margin: 1rem auto 2rem auto;
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.75rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Alert Messages */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid var(--teal);
  color: #0d7377;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid #3b82f6;
  color: #1d4ed8;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #dc2626;
}

.alert i {
  font-size: 1.25rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(45, 212, 191, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon i {
  font-size: 2.5rem;
  color: var(--teal);
}

.success-message h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.success-message p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--gold);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group .email-error {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Submit Button */
.btn-submit {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(45, 212, 191, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.faq-icon i {
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-wrapper {
    max-width: 95vw;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .info-cards {
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    height: auto;
    min-height: 350px;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-form-wrapper {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-section {
    padding: 4rem 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 1.5rem 0;
  }
  .contact-form-wrapper {
    padding: 1rem;
    border-radius: 10px;
  }
  .form-header h2 {
    font-size: 1.2rem;
  }
  .form-header p {
    font-size: 0.85rem;
  }
  .info-card {
    padding: 1rem;
    border-radius: 10px;
  }
  .info-card-title {
    font-size: 1rem;
  }
  .info-card-content {
    font-size: 0.9rem;
  }
  .form-group input,
  .form-group textarea {
    padding: 0.75rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .btn-submit {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }
}

@media (max-width: 400px) {
  .contact-form-wrapper {
    padding: 0.5rem;
    border-radius: 6px;
  }
  .form-header h2 {
    font-size: 1rem;
  }
  .form-header p {
    font-size: 0.8rem;
  }
  .info-card {
    padding: 0.5rem;
    border-radius: 6px;
  }
  .form-group input,
  .form-group textarea {
    padding: 0.5rem 0.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
  }
  .btn-submit {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
  }
}
