@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin-left: 280px;
}
@media (max-width: 1024px) {
  body {
    margin-left: 0;
    padding-top: 70px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

.amp {
  color: #850362;
}

h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: #3498db;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: white;
  border-right: 1px solid #dee2e6;
  z-index: 1000;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
}
.sidebar .sidebar-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sidebar .logo-section {
  text-align: left;
  margin-bottom: 3rem;
}
.sidebar .logo-section .logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #2c3e50;
  margin-bottom: 1rem;
  margin-left: 0;
  background-image: url("../../assets/images/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sidebar .logo-section h1 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
  font-family: "Ovo", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}
.sidebar .nav-links {
  list-style: none;
  flex: 1;
}
.sidebar .nav-links li {
  margin-bottom: 1rem;
}
.sidebar .nav-links .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.sidebar .nav-links .nav-link:hover {
  background: #f8f9fa;
  color: #3498db;
}
.sidebar .nav-links .nav-link.active {
  background: #3498db;
  color: white;
}
.sidebar .sidebar-footer .contact-btn {
  background: #3498db;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.sidebar .sidebar-footer .contact-btn:hover {
  background: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.sidebar .sidebar-footer .contact-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.sidebar .sidebar-footer .contact-btn {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sidebar .sidebar-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.sidebar .sidebar-footer .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
  font-weight: bold;
  transition: all 0.3s ease;
}
.sidebar .sidebar-footer .social-links .social-link:hover {
  background: #3498db;
  color: white;
}

.top-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #dee2e6;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .top-bar {
    display: block;
  }
}
.top-bar .top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.top-bar .top-bar-content .logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar .top-bar-content .logo-section .logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #2c3e50;
  background-image: url("../../assets/images/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-bar .top-bar-content .logo-section h1 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0;
  font-family: "Ovo", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}
.top-bar .top-bar-content .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.top-bar .top-bar-content .hamburger span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.top-bar .top-bar-content .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.top-bar .top-bar-content .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.top-bar .top-bar-content .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
.top-bar .mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.top-bar .mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.top-bar .mobile-menu .mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
}
.top-bar .mobile-menu .mobile-nav-links li {
  margin: 0;
}
.top-bar .mobile-menu .mobile-nav-links .mobile-nav-link {
  display: block;
  padding: 1rem 2rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.top-bar .mobile-menu .mobile-nav-links .mobile-nav-link:hover {
  background: #f8f9fa;
  color: #3498db;
}
.top-bar .mobile-menu .mobile-menu-footer {
  padding: 1rem 2rem 2rem;
  border-top: 1px solid #dee2e6;
}
.top-bar .mobile-menu .mobile-menu-footer .mobile-contact-btn {
  background: #3498db;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.top-bar .mobile-menu .mobile-menu-footer .mobile-contact-btn:hover {
  background: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.top-bar .mobile-menu .mobile-menu-footer .mobile-contact-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.top-bar .mobile-menu .mobile-menu-footer .mobile-contact-btn {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.top-bar .mobile-menu .mobile-menu-footer .mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.top-bar .mobile-menu .mobile-menu-footer .mobile-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 50%;
  font-weight: bold;
  transition: all 0.3s ease;
}
.top-bar
  .mobile-menu
  .mobile-menu-footer
  .mobile-social-links
  .social-link:hover {
  background: #3498db;
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  z-index: 1;
}
.hero .hero-background .splash-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
@media (max-width: 600px) {
  .hero .hero-background .splash-image {
    display: none;
  }
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}
.hero .hero-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  margin-right: 2rem;
  position: relative;
  z-index: 3;
}
.hero .hero-card h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero .hero-card p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero .hero-card .hero-buttons {
  display: flex;
  gap: 1rem;
}
.hero .hero-card .hero-buttons .btn-primary,
.hero .hero-card .hero-buttons .btn-secondary {
  background: #3498db;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.hero .hero-card .hero-buttons .btn-primary:hover,
.hero .hero-card .hero-buttons .btn-secondary:hover {
  background: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.hero .hero-card .hero-buttons .btn-primary:disabled,
.hero .hero-card .hero-buttons .btn-secondary:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.hero .hero-card .hero-buttons .btn-primary,
.hero .hero-card .hero-buttons .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.hero .hero-card .hero-buttons .btn-primary svg,
.hero .hero-card .hero-buttons .btn-secondary svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}
.hero .hero-card .hero-buttons .btn-secondary {
  background: transparent;
  color: #3498db;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.hero .hero-card .hero-buttons .btn-secondary:hover {
  background: hsla(0, 0%, -10%, 0);
}
.hero .hero-card .hero-buttons .btn-secondary:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.hero .hero-card .hero-buttons .btn-secondary {
  border: 2px solid #3498db;
}
.hero .hero-card .hero-buttons .btn-secondary:hover {
  background: #3498db;
  color: white;
}
/* Ensure hero buttons layout icon + text on one line */
.hero .hero-card .hero-buttons .btn-primary,
.hero .hero-card .hero-buttons .btn-secondary {
  display: flex;
  align-items: center;
  text-align: left;
}
.hero .hero-bear {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero .hero-bear .bear-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 5rem 0;
  min-height: 100dvh;
}
.section:nth-child(even) {
  background: linear-gradient(
    180deg,
    rgb(195, 209, 223) 0%,
    rgb(226, 233, 241) 100%
  );
}

#about .container {
  max-width: 630px;
  padding: 0 2rem;
}
#about h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  #about h2 {
    font-size: 1.8rem;
  }
}
#about p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}
#about p:last-child {
  margin-bottom: 0;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
  }
}
.services .service-card {
  min-width: 0;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.services .service-card .service-icon {
  margin-bottom: 1.5rem;
}
.services .service-card .service-icon i {
  font-size: 3rem;
  color: #3498db;
}
.services .service-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.services .service-card p {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}
.services .service-card .learn-more-btn {
  background: #3498db;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.services .service-card .learn-more-btn:hover {
  background: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.services .service-card .learn-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.services .service-card .learn-more-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.services .service-card .service-details {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.3s ease;
  z-index: 10;
  min-height: 400px;
  max-height: calc(100dvh - 4rem);
  max-width: min(100%, 1200px);
  height: auto;
  display: flex;
  flex-direction: column;
}
.services .service-card .service-details.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.services .service-card .service-details .service-details-content {
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow-y: auto;
  max-height: 100%;
  flex: 1 1 auto;
  min-height: 0;
}
.services .service-card .service-details .service-details-content h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: left;
}
.services .service-card .service-details .service-details-content ul {
  list-style: none;
  padding-left: 0;
  flex: 1;
  text-align: left;
}
.services .service-card .service-details .service-details-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.5;
  text-align: left;
}
.services
  .service-card
  .service-details
  .service-details-content
  ul
  li::before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.services
  .service-card
  .service-details
  .service-details-content
  .close-details-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}
.services
  .service-card
  .service-details
  .service-details-content
  .close-details-btn:hover {
  background: #3498db;
  color: white;
}
.services
  .service-card
  .service-details
  .service-details-content
  .close-details-btn
  i {
  font-size: 0.9rem;
}

@media (min-width: 1024px) and (max-width: 1150px) {
  .services .service-card h3 {
    font-size: 1em;
  }
}
@media (orientation: landscape) and (max-width: 1023px) {
  .services .service-card .service-details {
    width: 100%;
    left: 0;
    right: 0;
    transform-origin: center top;
    transform: scale(0.9);
    max-height: calc(100dvh - 70px - 16px);
    padding: 1.25rem;
  }
  .services .service-card .service-details.active {
    transform: scale(1);
  }
  .services .service-card .service-details .service-details-content h4 {
    font-size: 1.15rem;
  }
  .services .service-card .service-details .service-details-content ul li {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}
@media (max-width: 480px) {
  .services .service-card .service-details {
    width: min(94vw, 680px);
    padding: 1rem;
  }
  .services .service-card .service-details .service-details-content h4 {
    font-size: 1.05rem;
  }
  .services .service-card .service-details .service-details-content ul li {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}
@media (max-width: 1024px) {
  .services .service-card .service-details {
    max-height: calc(100dvh - 70px - 16px);
    min-height: 0;
  }
}
.team-section {
  background: linear-gradient(
    180deg,
    rgb(195, 209, 223) 0%,
    rgb(226, 233, 241) 100%
  );
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-section .team-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  background: white;
  text-align: center;
  padding: 2rem;
}
.team-section .team-card .team-image {
  margin-bottom: 1.5rem;
}
.team-section .team-card .team-image .team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}
.team-section .team-card .team-image .team-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #333;
}
.team-section .team-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.team-section .team-card .team-title {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.team-section .team-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq .faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #dee2e6;
}
.faq .faq-item .question {
  background: white;
  color: #2c3e50;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.faq .faq-item .question:hover {
  background: #f8f9fa;
  color: #3498db;
  text-decoration: none;
}
.faq .faq-item .question .arrow-icon {
  font-size: 1rem;
  transition: transform 0.4s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}
.faq .faq-item .question.active .arrow-icon {
  transform: rotate(90deg);
}
.faq .faq-item .answer {
  padding: 1.5rem;
  display: none;
  background: white;

  strong {
    margin-right: 0.5ch;
  }
}
.faq .faq-item .answer.active {
  display: block;
}

.contact {
  background: #2c3e50;
  color: white;
  padding: 4rem 0;
}
.contact h2 {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}
.contact .form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact .form-container .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.contact .form-container .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
  position: absolute;
  top: -10px;
  left: 12px;
  background: white;
  padding: 0 6px;
  font-size: 0.85rem;
  color: #3498db;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.contact .form-container .form-group input,
.contact .form-container .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact .form-container .form-group input::placeholder,
.contact .form-container .form-group textarea::placeholder {
  color: #888;
}
.contact .form-container .form-group input:focus,
.contact .form-container .form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}
.contact .form-container .form-group textarea {
  height: 120px;
  resize: vertical;
}
.contact .form-container .form-group .honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.contact .form-container .form-group .math-verification {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact .form-container .form-group .math-verification .math-question {
  font-weight: 500;
  color: #333;
}
.contact .form-container .form-group .math-verification input {
  width: 80px;
}
.contact .form-container .form-group:focus-within > label {
  opacity: 1;
  transform: translateY(0);
}
.contact .form-container .submit-btn {
  background: #3498db;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}
.contact .form-container .submit-btn:hover {
  background: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}
.contact .form-container .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.contact .form-container .form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
}
.contact .form-container .form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.contact .form-container .form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (min-width: 768px) {
  .contact .form-container {
    max-width: 1000px;
  }
  .contact .form-container form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact .form-container .contact-details,
  .contact .form-container .message-group {
    height: 100%;
  }
  .contact .form-container .message-group {
    display: flex;
    flex-direction: column;
  }
  .contact .form-container .message-group textarea {
    flex: 1 1 auto;
    min-height: 0;
  }
  .contact .form-container .message-group .submit-btn {
    margin-top: 1rem;
    width: 100%;
  }
}
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}
.footer p {
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .hero {
    height: 90dvh;
  }
  .hero .hero-background {
    right: -10%;
    width: 60%;
  }
  .hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero .hero-card {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .hero .hero-bear {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 2rem;
  }
  .hero .hero-bear .bear-logo {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero .hero-card {
    padding: 2rem;
  }
  .hero .hero-card h1 {
    font-size: 3rem;
    font-weight: 800;
  }
  .hero .hero-card .hero-buttons {
    flex-direction: column;
  }
  .section {
    padding: 2rem 0;
    min-height: 100dvh;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact .form-container {
    margin: 0 auto;
    max-width: none;
    padding: 1.5rem;
    width: 90vw;
  }
}
@media (orientation: landscape) and (max-width: 1023px) {
  .hero {
    height: 90dvh;
    align-items: center;
  }
  .hero .hero-background {
    right: 0;
    width: 65%;
  }
  .hero .hero-background .splash-image {
    object-position: left bottom;
  }
  .hero .hero-content {
    padding: 0 1rem;
    flex-direction: row;
    justify-content: flex-start;
  }
  .hero .hero-card {
    max-width: 600px;
    padding: 1.25rem;
    margin-right: 1rem;
    transform-origin: left center;
  }
  .hero .hero-card h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .hero .hero-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .hero .hero-card .hero-buttons {
    gap: 0.5rem;
  }
  .hero .hero-card .hero-buttons .btn-primary,
  .hero .hero-card .hero-buttons .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }
}
@media (orientation: landscape) and (max-width: 1023px) and (max-height: 700px),
  (orientation: landscape) and (max-width: 1023px) and (max-width: 835px) {
  .hero .hero-card {
    transform: scale(0.8);
  }
}
@media (orientation: landscape) and (max-width: 1023px) {
  .hero .hero-bear {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 1023px) and (max-height: 500px) {
  .hero .hero-card {
    transform: scale(0.72);
  }
}
@media (orientation: landscape) and (max-width: 1199px) {
  .team-section .team-card {
    display: block;
    text-align: left;
    padding: 1.25rem;
  }
  .team-section .team-card::after {
    content: "";
    display: table;
    clear: both;
  }
  .team-section .team-card .team-image {
    margin: 0 1rem 0.5rem 0;
  }
  .team-section .team-card .team-image .team-photo {
    width: 80px;
    height: 80px;
    margin: 0;
    float: left;
  }
  .team-section .team-card h3,
  .team-section .team-card .team-title {
    margin-left: calc(80px + 1rem);
    margin-right: 0;
    text-align: left;
  }
  .team-section .team-card h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
  .team-section .team-card .team-title {
    margin-top: 0;
    margin-bottom: 0.4rem;
  }
  .team-section .team-card p {
    text-align: left;
    margin: 0 0 0.5rem 0;
  }
}
@media (orientation: landscape) and (max-width: 1199px) and (max-height: 500px) {
  .team-section .team-card {
    padding: 1rem;
  }
  .team-section .team-card .team-image .team-photo {
    width: 70px;
    height: 70px;
  }
  .team-section .team-card h3,
  .team-section .team-card .team-title {
    margin-left: calc(70px + 1rem);
  }
  .team-section .team-card h3 {
    font-size: 1.1rem;
    min-height: 2em;
  }
  .team-section .team-card .team-title {
    font-size: 0.95rem;
  }
  .team-section .team-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    text-indent: 6em;
  }
}

/*# sourceMappingURL=main.css.map */
