@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap");

:root {
  --primary-color: #4f46e5;
  --primary-light: #818cf8;
  --accent-color: #10b981;
  --accent-dark: #059669;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --link-color: #2563eb;
  --background-color: #f9fafb;
  --card-bg: #ffffff;
  --light-gray: #f3f4f6;
  --gray: #9ca3af;
  --dark-gray: #4b5563;
  --gradient-start: #6366f1;
  --gradient-end: #8b5cf6;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

body {
  min-height: 100vh;
  text-align: center;
  background-color: var(--background-color);
  padding: 0.1rem;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  background-color: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  gap: 0.625rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  height: 2.5rem;
  width: 2.5rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: none;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.contact-button {
  display: none;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--background-color);
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

@media screen and (min-width: 768px) {
  .contact-button {
    display: block;
  }
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.menu-button {
  display: none;
  border: none;
  border-radius: 0.375rem;
  background-color: transparent;
  font-size: 1rem;
  padding: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .menu-button {
    display: block;
  }
}

.menu-button:hover {
  background-color: var(--light-gray);
}

.menu-icon {
  height: 1.5rem;
  width: 1.5rem;
}

/* Main Section */
.main-section {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0.6rem;
  align-items: center;
  margin: 0 auto;
  min-height: 80vh;
  justify-content: center;
}

.content-left {
  text-align: center;
  animation: slideFromLeft 1s ease forwards;
  opacity: 0;
}

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  padding: 1rem 0;
  color: var(--text-color);
  line-height: 1.2;
  background: linear-gradient(to right, var(--text-color), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.start-button,
.tour-button {
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start-button {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: white;
  box-shadow: var(--shadow);
}

.tour-button {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-light);
}

.start-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.tour-button:hover {
  background-color: var(--primary-light);
  color: white;
}

.content-right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-container {
  border: none;
  border-radius: 1.225rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 50vh;
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.section-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .main-section {
    flex-direction: row;
    padding: 3rem 0.6rem;
  }
  .content-left {
    max-width: 50%;
    text-align: left;
  }
  .section-title {
    padding-left: 0;
    font-size: 3.2rem;
  }
  .button-group {
    justify-content: start;
    padding-left: 0;
  }
  .section-label {
    font-size: 1.1rem;
  }
  .image-container {
    height: 60vh;
  }
  .section-description {
    font-size: 1.1rem;
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .start-button, .tour-button {
    width: 100%;
  }
}

/* Company Container */
.company-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem 1rem;
  animation: slideFromLeft 1s ease forwards;
}

.company-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border: none;
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  width: 100%;
}

.company-logo {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.company-logo:hover {
  transform: translateY(-5px);
  background-color: var(--light-gray);
}

.svg-img {
  height: 2rem;
  transition: transform 0.3s ease;
}

.company-logo:hover .svg-img {
  transform: scale(1.1);
}

.logo-txt {
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (min-width: 640px) {
  .company-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .company-title {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 480px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
  .company-logo {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Feature Container */
.feature-container {
  background: linear-gradient(to bottom, var(--light-gray), var(--background-color));
  padding: 4rem 0;
  text-align: center;
}

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

.main-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.main-description {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.icon-container {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
  transform: rotate(15deg) scale(1.1);
}

.feature-svg {
  width: 2.5rem;
  height: 2.5rem;
  filter: invert(1);
}

.feature-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

.feature-card:nth-child(1) .icon-container {
  background: linear-gradient(135deg, #4a90e2, #5fa8ff);
}

.feature-card:nth-child(2) .icon-container {
  background: linear-gradient(135deg, #ff6289, #ff85a5);
}

.feature-card:nth-child(3) .icon-container {
  background: linear-gradient(135deg, #fcbf58, #ffd57a);
}

.feature-card:nth-child(4) .icon-container {
  background: linear-gradient(135deg, #44bfc3, #5dd5d9);
}

.feature-card:nth-child(5) .icon-container {
  background: linear-gradient(135deg, #77b05d, #93d175);
}

.feature-card:nth-child(6) .icon-container {
  background: linear-gradient(135deg, #7d78b1, #9d98d4);
}

@media screen and (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .main-title {
    font-size: 2rem;
  }
}

/* Testimonial Container */
.testimonial-container {
  background-color: var(--background-color);
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 1280px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonial-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  gap: 1.5rem;
  transition: all 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
}

.testimonial-card:nth-child(1) { animation: fadeInUp 0.8s ease forwards 0.2s; }
.testimonial-card:nth-child(2) { animation: fadeInUp 0.8s ease forwards 0.4s; }
.testimonial-card:nth-child(3) { animation: fadeInUp 0.8s ease forwards 0.6s; }

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text::before {
  top: -1rem;
  left: -0.5rem;
}

.testimonial-text::after {
  bottom: -2rem;
  right: -0.5rem;
}

.testimonial-avatar {
  display: flex;
  justify-content: center;
}

.testimonial-avatar img {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-gray);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
  border-color: var(--primary-light);
  transform: scale(1.1);
}

.testimonial-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-name {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: bold;
}

.testimonial-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media screen and (max-width: 768px) {
  .testimonial-container {
    padding: 3rem 1rem;
  }
  .testimonial-title {
    font-size: 2rem;
  }
}

/* Newsletter Container */
.newsletter-container {
  background-color: var(--background-color);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-left {
  height: 200px;
  display: block;
  position: relative;
  overflow: hidden;
}

.news-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.news-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  color: white;
}

.news-info {
  text-align: center;
}

.news-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.news-desc {
  opacity: 0.9;
}

.news-form {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}

.news-email {
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  outline: none;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.news-email:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.news-send-button {
  background-color: white;
  color: var(--primary-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-send-button:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

.privacy-policy {
  font-size: 0.8rem;
  opacity: 0.8;
  max-width: 400px;
}

.news-link {
  text-decoration: underline;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .newsletter-content {
    flex-direction: row;
    align-items: stretch;
  }
  
  .news-left {
    width: 40%;
    height: auto;
  }
  
  .news-right {
    width: 60%;
    padding: 3rem;
    align-items: flex-start;
    text-align: left;
  }
  
  .news-info {
    text-align: left;
  }
  
  .news-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .news-form {
    flex-direction: column;
  }
  
  .news-email {
    min-width: 100%;
  }
  
  .news-send-button {
    width: 100%;
  }
}

/* Footer */
.footer-container {
  background-color: var(--card-bg);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
}

.footer {
  max-width: 1280px;
  padding: 3rem 0 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comp-logo {
  display: flex;
  justify-content: flex-start;
}

.logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-svg {
  width: 2rem;
  height: 2rem;
}

.filler-text {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 400px;
  line-height: 1.6;
}

.social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--light-gray);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  transform: translateY(-3px);
}

.social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.social-link:hover .social-icon {
  filter: invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  grid-gap: 2rem;
  padding-top: 2rem;
}

@media screen and (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-grid-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-grid-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-color);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-copyright {
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--light-gray);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation utilities */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--card-bg);
  z-index: 1000;
  padding: 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.mobile-contact-button {
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.mobile-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
