/* Copied from contact/styles.css */
/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #1f2937; background-color: #F5F5F5; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Global 80% scale: use zoom with transform fallback */
html { zoom: 0.8; }
@supports not (zoom: 1) {
  body {
    transform: scale(0.8);
    transform-origin: top left;
    /* Preserve layout width after scaling */
    width: 125%;
  }
}

/* Navigation */
.navbar { background: linear-gradient(0deg, rgba(0,0,0,0.22), rgba(0,0,0,0.22)), linear-gradient(135deg, rgba(37,168,73,0.12), rgba(32,130,67,0.10)); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(34,158,71,0.25); position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: 0 10px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 10px; margin-left: -17%; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; display: block; }
.nav-logo span { font-size: 28px; font-weight: 700; color: #FFFFFF; }
.navbar.on-hero .nav-logo span { color: #FFFFFF; }
.nav-menu ul { display: flex; list-style: none; gap: 40px; }
.nav-menu a { text-decoration: none; color: #FFFFFF; font-weight: 700; font-size: 19.2px; transition: color 0.3s ease; }
.nav-menu a:hover, .nav-menu a.active { color: rgba(255,255,255,0.9); }
.navbar.on-hero .nav-menu a { color: #FFFFFF; }
.navbar.on-hero .nav-menu a:hover, .navbar.on-hero .nav-menu a.active { color: rgba(255,255,255,0.9); }

/* Contact Section */
.contact-section { padding: 60px 0; background: #F5F5F5; }
.breadcrumb { margin-bottom: 20px; font-size: 14px; color: #6b7280; }
.page-header { display: flex; flex-direction: column; align-items: flex-start; gap: 30px; margin-bottom: 60px; }
.page-title { font-size: 48px; font-weight: 700; color: #1f2937; margin: 0; }
.contact-icons { display: flex; gap: 20px; align-items: center; flex-wrap: nowrap; width: 100%; }
.contact-icon-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0; transition: all 0.3s ease; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.contact-icon-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 168, 73, 0.15); border-color: #25a849; }
.contact-icon-item i { font-size: 18px; color: #25a849; min-width: 20px; flex-shrink: 0; }
.contact-icon-text { font-size: 13px; color: #4b5563; font-weight: 500; white-space: nowrap; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.map-container { width: 100%; height: 500px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
.map-container img { width: 100%; height: 100%; object-fit: cover; }
.contact-info-section { display: flex; flex-direction: column; gap: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.contact-card:hover { transform: translateY(-2px) scale(0.96); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.card-icon { width: 48px; height: 48px; background: #25a849; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-content h4 { font-size: 18px; font-weight: 600; color: #1f2937; margin-bottom: 8px; }
.card-content p { font-size: 16px; color: #4b5563; margin-bottom: 4px; }
.card-content span { font-size: 14px; color: #9ca3af; }
.contact-form-section { background: #f8fafc; padding: 40px; border-radius: 12px; border: 1px solid #e2e8f0; }
.contact-form-section h3 { font-size: 28px; font-weight: 600; color: #1f2937; margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 16px 20px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 16px; background: #ffffff; transition: border-color 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #25a849; box-shadow: 0 0 0 3px rgba(37, 168, 73, 0.1); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { background: #25a849; color: white; padding: 16px 32px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.contact-form button:hover { background: #208243; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 168, 73, 0.3); }

/* Footer (match home.css) */
.footer { background: #1f2937; color: white; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3, .footer-section h4 { margin-bottom: 1rem; color: white; }
.footer-section h3 { font-size: 1.5rem; background: linear-gradient(135deg, #25a849, #208243); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: #9ca3af; text-decoration: none; transition: color 0.3s ease; }
.footer-section a:hover { color: #25a849; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #374151; color: #9ca3af; }

/* Footer social icons */
.footer-social { margin-top: 0.5rem; display: flex; gap: 0.75rem; }
.footer-social .social { color: #9ca3af; font-size: 2.2rem; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: #111827; transition: background 0.3s ease, color 0.3s ease; }
.footer-social .social:hover { color: white; background: linear-gradient(135deg, #25a849, #208243); }

/* Hide scrollbars globally */
html { -ms-overflow-style: none; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
  /* Hide navbar completely on mobile */
  .navbar { 
    display: none !important; 
    visibility: hidden !important; 
    position: absolute !important; 
    top: -9999px !important; 
    height: 0 !important; 
    overflow: hidden !important; 
  }
  .contact-section { padding-top: 20px; padding-bottom: 40px; }
  .nav-container { height: auto; padding: 20px; }
  .nav-menu ul { gap: 20px; font-size: 14px; }
  .nav-logo span { font-size: 24px; }
  .page-header { gap: 20px; }
  .page-title { font-size: 36px; }
  .contact-icons { gap: 10px; overflow-x: auto; }
  .contact-icon-item { flex-shrink: 0; padding: 8px 12px; }
  .contact-icon-text { font-size: 11px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-container { height: 300px; }
  .banner-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .banner-text h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-form-section { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .nav-menu ul { flex-direction: column; gap: 12px; text-align: center; }
  .nav-container { flex-direction: column; padding: 20px; }
  .page-title { font-size: 28px; }
  .contact-icon-text { font-size: 10px; }
  .contact-icon-item { padding: 8px 10px; gap: 8px; }
  .contact-icon-item i { font-size: 16px; }
  .contact-card { flex-direction: column; text-align: center; gap: 16px; }
  .banner-text h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-form { flex-direction: column; }
}

html { scroll-behavior: smooth; }

