/* ============================================
   KWANG GROUP — Contact + Map (fully responsive)
   Palette: ink #15171C · panel #1E2129 · sky #3FB6F2
            cream #F5F3EE · muted #9AA0AE
   Type:    'Space Grotesk' (display) + 'Inter' (body)
   ============================================ */

/* ----- reset & base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0d12;
  font-family: 'Inter', sans-serif;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  --ink: #15171c;
  --panel: #1e2129;
  --panel-line: #2c303a;
  --sky: #3fb6f2;
  --sky-dim: rgba(63, 182, 242, 0.16);
  --cream: #f5f3ee;
  --muted: #9aa0ae;

  background: var(--ink);
  color: var(--cream);
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Animated background */
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 182, 242, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBg 25s ease-in-out infinite alternate;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(63, 182, 242, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBg 30s ease-in-out infinite alternate-reverse;
}

@keyframes floatBg {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

/* Floating orbs */
.contact-section .orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.15;
  animation: orbFloat 20s ease-in-out infinite alternate;
}

.contact-section .orb-1 {
  width: 200px;
  height: 200px;
  background: var(--sky);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.contact-section .orb-2 {
  width: 150px;
  height: 150px;
  background: #6cc9f5;
  bottom: 15%;
  right: -3%;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.3); }
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.contact-header {
  max-width: 540px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--sky-dim);
  border-radius: 999px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulse 2s ease-in-out infinite;
}

.contact-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(63, 182, 242, 0.15);
  border-color: var(--sky);
}

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

.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 0.6rem;
}

.contact-title span {
  color: var(--sky);
  position: relative;
  white-space: nowrap;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.contact-title span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.25em;
  background: var(--sky-dim);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.contact-subtitle {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  animation: fadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
  opacity: 0;
}

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

/* Content grid */
.contact-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  border: 1px solid var(--panel-line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  animation: fadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s forwards;
  opacity: 0;
}

/* Info panel */
.contact-info {
  padding: 2rem 1.8rem;
  border-right: 1px solid var(--panel-line);
  position: relative;
  transition: all 0.3s ease;
}

.contact-info:hover {
  background: rgba(63, 182, 242, 0.02);
}

.contact-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.6rem;
}

.contact-info > p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 0 0 1.5rem;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-details li {
  padding-left: 0.8rem;
  border-left: 2px solid var(--panel-line);
  transition: all 0.3s ease;
  transform: translateX(0);
}

.contact-details li:hover {
  border-left-color: var(--sky);
  transform: translateX(4px);
}

.contact-details li:nth-child(1) { animation: slideIn 0.6s ease 0.6s forwards; opacity: 0; }
.contact-details li:nth-child(2) { animation: slideIn 0.6s ease 0.7s forwards; opacity: 0; }
.contact-details li:nth-child(3) { animation: slideIn 0.6s ease 0.8s forwards; opacity: 0; }

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

.contact-details strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.3rem;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
}

.contact-details a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sky);
  transition: width 0.3s ease;
}

.contact-details a:hover::after {
  width: 100%;
}

.contact-details a:hover {
  color: var(--sky);
  transform: translateX(4px);
}

.contact-details i {
  width: 14px;
  color: var(--muted);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-details a:hover i {
  color: var(--sky);
  transform: scale(1.1) rotate(-5deg);
}

/* Form */
.contact-form {
  padding: 2rem 1.8rem;
  background: var(--panel);
  transition: all 0.3s ease;
}

.contact-form:hover {
  background: rgba(63, 182, 242, 0.01);
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.5s; }
.form-group:nth-child(2) { animation-delay: 0.6s; }
.form-group:nth-child(3) { animation-delay: 0.7s; }
.form-group:nth-child(4) { animation-delay: 0.8s; }
.form-group:nth-child(5) { animation-delay: 0.9s; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA0AE' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.form-group select:invalid {
  color: var(--muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px var(--sky-dim);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--sky-dim);
}

/* underline animation on focus */
.form-group::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--sky);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group:focus-within::after {
  width: 30%;
}

.form-group .input-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group textarea~.input-icon {
  top: 0.85rem;
  transform: none;
}

.form-group:focus-within .input-icon {
  color: var(--sky);
  transform: translateY(-50%) scale(1.1);
}

/* Button */
.contact-btn {
  margin-top: 0.3rem;
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--sky);
  border: none;
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease 1s forwards;
  opacity: 0;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  background: #6cc9f5;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(63, 182, 242, 0.3);
}

.contact-btn:active {
  transform: translateY(0) scale(0.98);
}

.contact-btn:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
}

/* ============================================
   MAP SECTION (fully responsive)
   ============================================ */
.map-section {
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  width: 100%;
}

.map-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.map-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.section-title span {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  margin: 10px auto 0;
  border-radius: 3px;
}

.section-title p {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #475569;
  max-width: 500px;
  margin: 12px auto 0;
  line-height: 1.5;
}

.map-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.03);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.10),
    0 8px 20px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
  background: #e2e8f0;
  pointer-events: auto;
}

.map-open-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1e293b;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.map-open-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #2563eb;
}

.map-open-btn:hover {
  background: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.map-open-btn:active {
  transform: scale(0.96);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- Big screens (≥1200px) --- */
@media (min-width: 1200px) {
  .contact-section {
    padding: 4rem 2rem;
  }
  .contact-container {
    max-width: 1000px;
  }
  .contact-content {
    border-radius: 20px;
  }
  .contact-info {
    padding: 2.5rem;
  }
  .contact-form {
    padding: 2.5rem;
  }
  .contact-title {
    font-size: 2.8rem;
  }
  .contact-subtitle {
    font-size: 1rem;
  }
  .map-section {
    padding: 60px 0 70px;
  }
}

@media (min-width: 1600px) {
  .contact-section {
    padding: 5rem 3rem;
  }
  .contact-container {
    max-width: 1100px;
  }
  .contact-content {
    border-radius: 24px;
  }
  .contact-info,
  .contact-form {
    padding: 3rem;
  }
  .contact-title {
    font-size: 3.2rem;
  }
}

/* --- Tablets & smaller laptops (≤992px) --- */
@media (max-width: 992px) {
  .map-section {
    padding: 40px 0 50px;
  }
  .map-wrapper iframe {
    height: 300px;
  }
  .section-title h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  }
}

/* --- Mobile landscape & small tablets (≤768px) --- */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--panel-line);
  }
  .contact-info,
  .contact-form {
    padding: 1.5rem 1.2rem;
  }
  .contact-section .orb-1,
  .contact-section .orb-2 {
    display: none;
  }
  .contact-section::before,
  .contact-section::after {
    width: 300px;
    height: 300px;
  }

  .map-section {
    padding: 35px 0 45px;
  }
  .section-title {
    margin-bottom: 24px;
  }
  .section-title span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 3px 12px;
  }
  .section-title h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }
  .section-title h2::after {
    width: 32px;
    height: 3px;
  }
  .section-title p {
    font-size: 0.85rem;
    padding: 0 10px;
  }
  .map-wrapper {
    border-radius: 12px;
  }
  .map-wrapper iframe {
    height: 300px;
  }
  .map-open-btn {
    bottom: 14px;
    right: 14px;
    padding: 8px 14px;
    font-size: 0.7rem;
    gap: 6px;
  }
  .map-open-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* --- Mobile portrait (≤480px) --- */
@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 0.75rem;
  }
  .contact-title {
    font-size: 1.6rem;
  }
  .contact-subtitle {
    font-size: 0.82rem;
  }
  .contact-info,
  .contact-form {
    padding: 1.2rem 1rem;
  }
  .contact-details {
    gap: 0.8rem;
  }
  .contact-details a {
    font-size: 0.78rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
  }
  .form-group textarea {
    min-height: 70px;
  }
  .contact-btn {
    width: 100%;
    align-self: stretch;
    text-align: center;
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  }
  .contact-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
  }
  .contact-info h3 {
    font-size: 1rem;
  }
  .contact-info > p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .form-group::after {
    height: 1.5px;
  }
  .contact-section::before,
  .contact-section::after {
    display: none;
  }

  .map-section {
    padding: 30px 0 35px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .section-title span {
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 3px 10px;
    margin-bottom: 8px;
  }
  .section-title h2 {
    font-size: clamp(1rem, 5vw, 1.3rem);
  }
  .section-title h2::after {
    width: 28px;
    height: 2px;
    margin-top: 8px;
  }
  .section-title p {
    font-size: 0.8rem;
    padding: 0 6px;
    margin-top: 8px;
  }
  .map-wrapper {
    border-radius: 10px;
  }
  .map-wrapper iframe {
    height: 260px;
    min-height: 220px;
  }
  .map-wrapper:hover {
    transform: none;
  }
  .map-open-btn {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 0.65rem;
    gap: 5px;
    border-radius: 40px;
  }
  .map-open-btn svg {
    width: 14px;
    height: 14px;
  }
  .map-open-btn .btn-text {
    display: none;
  }
}

/* --- Extra small (≤360px) --- */
@media (max-width: 360px) {
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-info,
  .contact-form {
    padding: 1rem 0.8rem;
  }
  .contact-details a {
    font-size: 0.72rem;
  }
  .contact-details i {
    width: 12px;
    font-size: 0.65rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
  }
  .contact-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .map-section {
    padding: 25px 0 30px;
  }
  .map-wrapper iframe {
    height: 220px;
    min-height: 200px;
  }
  .map-open-btn {
    padding: 6px 10px;
    bottom: 10px;
    right: 10px;
  }
  .map-open-btn svg {
    width: 12px;
    height: 12px;
  }
  .section-title h2 {
    font-size: 1rem;
  }
  .section-title p {
    font-size: 0.75rem;
  }
}

/* --- Landscape phones (max-height: 600px) --- */
@media (max-height: 600px) and (orientation: landscape) {
  .contact-section {
    padding: 1.5rem 1rem;
  }
  .contact-header {
    margin-bottom: 1rem;
  }
  .contact-title {
    font-size: 1.6rem;
  }
  .contact-subtitle {
    font-size: 0.8rem;
  }
  .contact-info,
  .contact-form {
    padding: 1.2rem 1rem;
  }
  .contact-details {
    gap: 0.6rem;
  }
  .form-group textarea {
    min-height: 60px;
  }
  .contact-btn {
    padding: 0.5rem 1.2rem;
  }
  .contact-section .orb-1,
  .contact-section .orb-2 {
    display: none;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .contact-btn,
  .form-group::after,
  .contact-details li,
  .contact-details a::after {
    transition: none !important;
  }
  .contact-info,
  .contact-form {
    transform: none !important;
  }
  .contact-btn::before {
    display: none !important;
  }
  .contact-title span::after {
    animation: none !important;
    transform: scaleX(1) !important;
  }
  .contact-content {
    opacity: 1 !important;
    animation: none !important;
  }
  .contact-header {
    animation: none !important;
  }
  .contact-subtitle {
    opacity: 1 !important;
    animation: none !important;
  }
  .form-group {
    opacity: 1 !important;
    animation: none !important;
  }
  .contact-details li {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  .contact-btn {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ============================================
   DARK MODE SUPPORT (map section)
   ============================================ */
@media (prefers-color-scheme: dark) {
  .map-section {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  }
  .map-section::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  }
  .map-section::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  }
  .section-title span {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
  }
  .section-title h2 {
    color: #f1f5f9;
  }
  .section-title h2::after {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  }
  .section-title p {
    color: #94a3b8;
  }
  .map-wrapper {
    background: #1e293b;
    box-shadow: 
      0 8px 30px rgba(0, 0, 0, 0.4),
      0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .map-wrapper:hover {
    box-shadow: 
      0 20px 50px rgba(0, 0, 0, 0.5),
      0 8px 20px rgba(0, 0, 0, 0.3);
  }
  .map-wrapper iframe {
    background: #0f172a;
  }
  .map-open-btn {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.06);
  }
  .map-open-btn svg {
    color: #60a5fa;
  }
  .map-open-btn:hover {
    background: #1e293b;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .contact-section {
    background: #fff !important;
    padding: 2rem 1rem !important;
  }
  .contact-content {
    border: 1px solid #ddd !important;
    background: #fff !important;
  }
  .contact-info,
  .contact-form {
    background: #fff !important;
  }
  .contact-title,
  .contact-title span,
  .contact-info h3,
  .contact-details a {
    color: #000 !important;
  }
  .contact-btn {
    background: #000 !important;
    color: #fff !important;
  }
  .contact-badge {
    border-color: #ccc !important;
    color: #000 !important;
  }
  .contact-badge::before {
    background: #000 !important;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    border-color: #ccc !important;
    background: #fff !important;
    color: #000 !important;
  }
  .contact-section .contact-title span::after {
    background: rgba(0, 0, 0, 0.1) !important;
  }
  .form-group::after {
    display: none !important;
  }
  .contact-section::before,
  .contact-section::after,
  .contact-section .orb {
    display: none !important;
  }
  .contact-btn::before {
    display: none !important;
  }
  .map-section {
    background: #fff !important;
  }
  .map-wrapper {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  .map-open-btn {
    display: none !important;
  }
  .section-title h2 {
    color: #000 !important;
  }
  .section-title p {
    color: #333 !important;
  }
}