/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #fcfcfc;
  --dark-bg: #212529;
  --border-color: #dee2e6;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-light: #fcfcfc;
  --accent-yellow: #ffe366;
  --accent-red: #fe0000;
  --nav-bg: rgba(33, 37, 41, 0.6);
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 50%; /* Adjust height ratio (50% = half of width) */
  overflow: hidden;
  border-radius: 12px; /* optional rounded edges */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-form-card,
.info-card {
  animation: fadeIn 1s ease forwards;
}

.contact-form-card {
  animation-delay: 0.2s;
}

.info-card:first-child {
  animation-delay: 0.4s;
}

.info-card:last-child {
  animation-delay: 0.6s;
}

/* Navigation Bar */
.btn-menu {
  width: 51px;
  height: 51px;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-menu:hover {
  background-color: #f0f0f0;
}

/* Breadcrumb Section */
.breadcrumb-section {
  padding: 2.5rem;
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 80px;
  border-radius: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('https://c.animaapp.com/mh0qkbxeftQ3CI/img/frame-3.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 500px;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  text-align: center;
  line-height: 1.2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
}

.breadcrumb-link {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb svg {
  color: var(--text-light);
}

.breadcrumb-current {
  color: var(--text-light);
}
/* Contact Section */
.contact-section {
  padding: 2.5rem;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  font-family:  "Nunito Sans", Helvetica;;
}
.contact-form-card-1 {
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family:"Nunito Sans", Helvetica;
  color: #FCFCFC;
  font-weight: 500;
}

/* Cards */
.contact-form-card,
.info-card {
  background: white;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-header h2 {
text-align: left  !important;;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.separator {
  height: 1px;
  background-color: var(--border-color);
}
.separator-1 {
  height: 1px;
  background-color: #6C757D;
}
/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background-color: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  color: var(--text-secondary);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit-1 {
  padding: 1.2rem 1.5rem;
  background-color: #FCFCFC;
  color: #212529;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.btn-submit {
  padding: 1rem 1.5rem;
  background-color: var(--dark-bg);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.btn-submit:hover {
  background-color: #343a40;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.info-item.full-width {
  grid-column: 1 / -1;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--text-primary);
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.info-value {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 2.5rem;
  background: transparent;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--dark-bg);
  border-radius: 30px;
  padding: 2.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 172.56px;
  height: 40px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.footer-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-secondary);
  border-radius: 30px;
  color: var(--text-light);
  transition: border-color 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--accent-yellow);
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-secondary);
  border-radius: 30px;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--text-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-yellow);
  line-height: 1.2;
}

.contact-value {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #424d57;
  font-size: 16px;
  color: var(--text-light);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .nav-item {
    padding: 0.5rem 0.75rem;
    font-size: 14px;
  }

  .btn-call span {
    display: none;
  }

  .breadcrumb-container {
    padding: 80px 40px;
  }

  .page-title {
    font-size: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-container {
    flex-wrap: wrap;
  }

  .logo {
    width: 140px;
    height: 32px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 1rem;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-call {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }

  .btn-call span {
    display: none;
  }

  .btn-menu {
    width: 44px;
    height: 44px;
  }

  .breadcrumb-section {
    padding: 1rem;
  }

  .breadcrumb-container {
    padding: 60px 20px;
  }

  .page-title {
    font-size: 32px;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .contact-section {
    padding: 1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-card,
  .info-card {
    padding: 1.5rem;
  }

  .card-header h2 {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 1rem;
  }

  .footer-container {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column:first-child {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 14px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .logo {
    width: 120px;
    height: 28px;
  }

  .page-title {
    font-size: 28px;
  }

  .breadcrumb-container {
    padding: 40px 15px;
  }

  .contact-form-card,
  .info-card {
    padding: 1rem;
  }

  .card-header h2 {
    font-size: 18px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 0.625rem 0.875rem;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-links a,
  .contact-value {
    font-size: 14px;
  }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
  .navbar-container,
  .breadcrumb-container,
  .contact-container,
  .footer-container {
    max-width: 1600px;
  }
}