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

body {
  font-family: 'Product Sans', "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #202124;
  color: #e8eaed;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
/* Logo image universal style */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.18));
  transition: transform 0.2s;
}
.header {
  background: #1a1a1a;
  border-bottom: 1px solid #3c4043;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  background: linear-gradient(90deg, #4285F4 0%, #EA4335 25%, #FBBC04 50%, #34A853 75%, #4285F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.logo-text:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #e8eaed;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4285F4;
}

.get-listed-btn {
  background: #34A853;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-listed-btn:hover {
  background: #2d9248;
  transform: translateY(-1px);
}

.search-icon-btn,
.menu-toggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.search-icon-btn:hover,
.menu-toggle:hover {
  background: #292a2d;
}

.menu-toggle {
  display: none;
}

/* Main Content */
.main-content {
  padding: 40px 0;
}

.breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
}

.breadcrumb-link {
  color: #4285F4;
  text-decoration: none;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #9aa0a6;
}

.breadcrumb-current {
  color: #9aa0a6;
}

/* Page Header */
.page-header {
  background: #292a2d;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  text-align: center;
}

.page-title {
  font-size: 36px;
  font-weight: 600;
  color: #e8eaed;
  margin-bottom: 20px;
}

.page-description {
  font-size: 18px;
  color: #9aa0a6;
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-subdescription {
  font-size: 16px;
  color: #9aa0a6;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: #292a2d;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #e8eaed;
  font-size: 15px;
}

.required {
  color: #EA4335;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #3c4043;
  border-radius: 6px;
  font-size: 15px;
  background: #202124;
  color: #e8eaed;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #4285F4;
  background: #292a2d;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

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

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #34A853;
  color: white;
}

.btn-primary:hover {
  background: #2d9248;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
}

/* Company Information */
.company-info {
  background: #292a2d;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.company-logo {
  font-size: 48px;
  color: #4285F4;
  flex-shrink: 0;
}

.company-details h4 {
  font-size: 18px;
  color: #e8eaed;
  margin-bottom: 15px;
}

.company-details p {
  color: #9aa0a6;
  margin-bottom: 20px;
  line-height: 1.6;
}

.office-info {
  background: #202124;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #4285F4;
}

.office-info h4 {
  color: #e8eaed;
  margin-bottom: 10px;
  font-size: 16px;
}

.office-info p {
  color: #9aa0a6;
  margin: 0;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #171717;
  border-top: 1px solid #3c4043;
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 16px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #9aa0a6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #4285F4;
}

.support-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #3c4043;
}

.support-section p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #9aa0a6;
}

.btn-support {
  background: #4285F4;
  color: white;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 12px;
}

.btn-support:hover {
  background: #3367d6;
}

.footer-brand .footer-logo {
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  color: #9aa0a6;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  background: #292a2d;
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #4285F4;
}

.footer-stats {
  border-top: 1px solid #3c4043;
  padding-top: 30px;
  margin-bottom: 30px;
}

.footer-stats h4 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #4285F4;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #9aa0a6;
}

.footer-bottom {
  border-top: 1px solid #3c4043;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #9aa0a6;
  line-height: 1.5;
}

.footer-bottom a {
  color: #4285F4;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    gap: 15px;
  }

  .get-listed-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .search-icon-btn,
  .menu-toggle {
    display: block;
  }

  .nav-link {
    display: none;
  }

  .main-content {
    padding: 20px 0;
  }

  .page-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-description {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .page-subdescription {
    font-size: 15px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .company-info {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .company-logo {
    font-size: 36px;
    align-self: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .header {
    padding: 15px 0;
  }

  .logo-text {
    font-size: 14px;
    padding: 6px 12px;
  }

  .nav-menu {
    gap: 10px;
  }

  .get-listed-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .page-header {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .page-description {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .page-subdescription {
    font-size: 14px;
  }

  .contact-form {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .company-info {
    padding: 20px 15px;
    margin-bottom: 30px;
  }

  .company-logo {
    font-size: 28px;
  }

  .company-details h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .office-info {
    padding: 15px;
  }

  .office-info h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .office-info p {
    font-size: 13px;
  }

  .footer-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-number {
    font-size: 20px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
  }

  .nav-link:hover,
  .get-listed-btn:hover {
    transform: none;
  }
}