/* ============================================
   contact.css - Redesigned Minimal Contact Page
   No heavy boxes, organic flow
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0E17;
  color: #EDF2F8;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 90px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.highlight {
  color: #E65A5A;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF, #E65A5A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== NAVBAR (same as other pages) ===== */
.navbar {
  position: fixed;
  top: 30px;
  width: 100%;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 143, 217, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 18, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar.hide-nav {
  top: -80px;
  opacity: 0;
  pointer-events: none;
}

.navbar.show-nav {
  top: 30px;
  opacity: 1;
  pointer-events: auto;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-wrapper {
  position: relative;
}

.logo-img {
  height: 32px;
  width: auto;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(230, 90, 90, 0.3), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.3px;
  color: #FFFFFF;
}

.brand-tagline {
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: #88C9F0;
  text-transform: uppercase;
}

.area-highlight {
  color: #E65A5A;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.8rem;
  transition: 0.25s;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2E8FD9;
  transition: width 0.25s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active-nav::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #2E8FD9;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111724;
  min-width: 230px;
  border-radius: 12px;
  padding: 0.75rem 0;
  top: 40px;
  left: -20px;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(230, 90, 90, 0.2);
  backdrop-filter: blur(8px);
  z-index: 1001;
  pointer-events: auto;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #EDF2F8;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.dropdown-content a i {
  width: 20px;
  color: #2E8FD9;
}

.dropdown-content a:hover {
  background: rgba(46, 143, 217, 0.1);
  color: #60A5FA;
  padding-left: 1.8rem;
}

.dropdown:hover .dropdown-content {
  display: block;
  pointer-events: auto;
}

.external-link i {
  font-size: 0.7rem;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-progress {
  height: 2px;
  background: linear-gradient(90deg, #E65A5A, #1B2A4A);
  width: 0%;
  transition: width 0.2s;
}

/* ===== HERO ===== */
.contact-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0F1A, #111827);
  z-index: 0;
}

.contact-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(230, 90, 90, 0.12), transparent 70%);
  animation: subtleShift 12s infinite alternate;
}

@keyframes subtleShift {
  0% { opacity: 0.4; transform: scale(1);}
  100% { opacity: 0.8; transform: scale(1.05);}
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(230, 90, 90, 0.25);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #2E8FD9;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
  color: #94A3B8;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #64748B;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== CONTACT LINES (no boxes, just dividers) ===== */
.contact-lines {
  padding: 3rem 0;
  background: #0D121C;
  border-bottom: 1px solid #1A212F;
}

.lines-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  padding: 0.5rem 0;
  border-right: 1px solid #1A212F;
}

.contact-line:last-child {
  border-right: none;
}

.line-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-icon i {
  font-size: 1.3rem;
  color: #2E8FD9;
}

.line-content h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #CBD5E1;
}

.line-content p {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.line-content a {
  color: #EDF2F8;
  text-decoration: none;
}

.line-content a:hover {
  color: #2E8FD9;
}

.line-sep {
  color: #2A3343;
  margin: 0 0.5rem;
}

.line-note {
  font-size: 0.7rem;
  color: #64748B;
}

/* ===== MAIN CONTACT AREA ===== */
.main-contact-area {
  padding: 5rem 0;
  background: #0A0E17;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Minimal Form */
.form-header-minimal {
  margin-bottom: 2rem;
}

.form-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2E8FD9;
}

.form-header-minimal h2 {
  font-size: 1.8rem;
  margin-top: 0.25rem;
}

.form-header-minimal p {
  color: #94A3B8;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.minimal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-field {
  position: relative;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field textarea,
.select-wrapper select {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  color: #EDF2F8;
  font-family: 'Inter', sans-serif;
  outline: none;
  z-index: 1;
  position: relative;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.9rem;
  color: #64748B;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 0;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.select-wrapper select:focus ~ label,
.select-wrapper select:not([value=""]) ~ label {
  top: -0.2rem;
  font-size: 0.7rem;
  color: #2E8FD9;
}

.field-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2A3343;
  transition: all 0.3s;
}

.form-field input:focus ~ .field-border,
.form-field textarea:focus ~ .field-border,
.select-wrapper select:focus ~ .field-border {
  height: 2px;
  background: #2E8FD9;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  cursor: pointer;
  appearance: none;
  background: transparent;
  padding-right: 1.5rem;
}

.select-wrapper select option {
  background: #111722;
  color: #EDF2F8;
}

.select-arrow {
  position: absolute;
  right: 0;
  bottom: 0.6rem;
  font-size: 0.7rem;
  color: #64748B;
  pointer-events: none;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.checkbox-minimal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: #94A3B8;
}

.checkbox-minimal input {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #2A3343;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.checkbox-minimal input:checked + .checkmark {
  background: #2E8FD9;
  border-color: #2E8FD9;
}

.checkbox-minimal input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.submit-btn-minimal {
  background: transparent;
  border: none;
  color: #2E8FD9;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  transition: gap 0.3s;
}

.submit-btn-minimal:hover {
  gap: 12px;
}

/* Minimal Map Container */
.map-wrapper-minimal {
  position: relative;
}

.map-container-minimal {
  background: #0D121C;
  border-radius: 0;
  position: relative;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid #2E8FD9;
}

.map-accent-line {
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #2E8FD9, transparent);
}

.map-header-minimal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.map-header-minimal i {
  font-size: 0.9rem;
  color: #2E8FD9;
}

.map-header-minimal span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748B;
}

.map-embed {
  width: 100%;
  height: 320px;
  overflow: hidden;
  filter: grayscale(0.2) contrast(0.9);
  transition: filter 0.3s;
}

.map-embed:hover {
  filter: grayscale(0) contrast(1);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
}

.map-footer-minimal {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-address-minimal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94A3B8;
}

.map-address-minimal i {
  color: #2E8FD9;
  font-size: 0.7rem;
}

.copy-address-minimal {
  background: transparent;
  border: none;
  color: #64748B;
  font-size: 0.7rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.copy-address-minimal:hover {
  color: #2E8FD9;
}

/* ===== OFFICE TIMELINE (no boxes) ===== */
.office-timeline {
  padding: 5rem 0;
  background: #0D121C;
  border-top: 1px solid #1A212F;
  border-bottom: 1px solid #1A212F;
}

.timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E65A5A;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2A3343, #2A3343, #2A3343, transparent);
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 180px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: #E65A5A;
  border-radius: 50%;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.timeline-year {
  font-size: 0.7rem;
  color: #E65A5A;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.4;
}

.timeline-content a {
  font-size: 0.7rem;
  color: #64748B;
  text-decoration: none;
}

.timeline-content a:hover {
  color: #E65A5A;
}

/* ===== FAQ MINIMAL ===== */
.faq-minimal {
  padding: 5rem 0;
  background: #0A0E17;
}

.faq-header-minimal {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2E8FD9;
}

.faq-header-minimal p {
  color: #94A3B8;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.faq-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item-minimal {
  border-bottom: 1px solid #1A212F;
}

.faq-question-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-weight: 500;
  color: #CBD5E1;
  transition: color 0.2s;
}

.faq-question-minimal:hover {
  color: #2E8FD9;
}

.faq-question-minimal i {
  font-size: 0.8rem;
  color: #64748B;
  transition: transform 0.3s;
}

.faq-item-minimal.active .faq-question-minimal i {
  transform: rotate(45deg);
  color: #2E8FD9;
}

.faq-answer-minimal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-minimal.active .faq-answer-minimal {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.faq-answer-minimal p {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== CTA MINIMAL ===== */
.cta-minimal {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0A0E17, #0D121C);
}

.cta-content-minimal {
  text-align: center;
}

.cta-content-minimal h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-content-minimal p {
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.cta-link-minimal {
  color: #2E8FD9;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.cta-link-minimal:hover {
  gap: 12px;
}

/* ===== TOAST MINIMAL ===== */
.toast-minimal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111722;
  border-left: 3px solid #2E8FD9;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2001;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.toast-minimal.show {
  transform: translateX(0);
}

.toast-minimal i {
  color: #2E8FD9;
  font-size: 1.1rem;
}

.toast-minimal span {
  font-size: 0.8rem;
  color: #EDF2F8;
}

/* ===== FOOTER ===== */
.footer {
  background: #05080F;
  position: relative;
}

.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding: 0 32px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 42px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #111722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all 0.3s;
  border: 1px solid #1F2838;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2E8FD9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: #2E8FD9;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  width: 16px;
  color: #2E8FD9;
}

.footer-bottom {
  border-top: 1px solid #1A202E;
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 32px;
}

.footer-bottom p {
  color: #475569;
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #2E8FD9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 2.8rem;
  }
  
  .contact-split {
    gap: 2rem;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .timeline-item {
    text-align: left;
    padding-left: 1.5rem;
    border-left: 1px solid #2A3343;
  }
  
  .timeline-dot {
    position: absolute;
    left: -5px;
    margin: 0;
  }
}

@media (max-width: 850px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0C111C;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .lines-grid {
    flex-direction: column;
  }
  
  .contact-line {
    border-right: none;
    border-bottom: 1px solid #1A212F;
    padding-bottom: 1rem;
  }
  
  .contact-line:last-child {
    border-bottom: none;
  }
  
  .form-field-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-wrapper {
    justify-content: center;
  }
  
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .map-container-minimal {
    padding: 1rem 0 1rem 1rem;
  }
  
  .map-embed {
    height: 250px;
  }
}
