/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #101B25;
  --secondary-color: #FFF020;
  --text-light: #FFFFFF;
  --text-dark: #101B25;
  --text-gray: #9A9A9A;
  --bg-light: #F6F8FA;
  --bg-dark: #0E1721;
  --bg-darker: #0C141C;
  --border-radius: 36px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'PingFang SC', 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  z-index: 1000;
  padding: 6px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 4px 16px;
  border-radius: 22px;
  border: 1px solid #FFFFFF;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-download {
  background-color: var(--text-light);
  color: var(--text-dark);
  border: none;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-download:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.btn-language-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: -50px;
  margin-top: 10px;
  background: var(--bg-dark);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1000;
}

.language-switcher:hover {
  cursor: pointer;
}
.language-switcher.active .language-menu {
  display: block;
}

.language-option {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.language-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
  color: var(--secondary-color);
}

.btn-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 48px;
  background: #1B1B1B;
  background-image: url('assets/images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
  padding: 0 8.33%;
}

.hero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-item.center {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Image Styles */
.hero-img,
.feature-img,
.value-img,
.career-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.logo-icon-img {
  height: 36px;
  object-fit: contain;
}

.social-icon-img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.hero-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  text-align: center;
  line-height: 1.2;
}

.gift-box {
  position: absolute;
  top: -20px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.3;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 20px;
}

.search-bar {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.app-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.icon {
  font-size: 24px;
}

.hero-tagline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: #101B25;
  overflow: hidden;
}

.hashtag-scroll {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.hashtag-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scroll-horizontal 20s linear infinite;
}

.hashtag {
  font-size: 32px;
  color: #FFF020;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 40px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 54px;
  line-height: 1.2;
}

.value-section .section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
}

.title-line {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--secondary-color);
}

.section-subtitle {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 60px;
  max-width: 1600px;
}

/* What Is PomoGo Section */
.what-is-section {
  background-color: #EFEFEF;
}

.what-is-section .container {
  width: 90%;
  background: #101B25;
  border-radius: 50px;
  color: var(--text-light);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.what-is-section .section-title {
  color: var(--text-light);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-card {
  background: #101B25;
  border-radius: 20px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-title {
  height: 64px;
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

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

/* Who We Are Section */
.who-we-are-section {
  padding-top: 110px !important;
}

.who-we-are-section .container {
  padding: 0;
}

.who-we-are-section .section-title {
  color: var(--text-dark);
  margin-bottom: 60px;
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.who-we-are-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.who-we-are-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 26px;
  overflow: hidden;
}

.who-we-are-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-we-are-right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.logo-large {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.logo-icon-large {
  font-size: 80px;
}

.logo-text-large {
  font-size: 80px;
  font-weight: bold;
  color: var(--secondary-color);
}

.who-we-are-text {
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-dark);
}

.who-we-are-text p {
  margin-bottom: 20px;
}

.text-bold {
  font-weight: bold;
}

.who-we-are-text strong {
  font-weight: bold;
  color: var(--text-dark);
}

/* Yellow Banner */
.yellow-banner {
  background-color: var(--secondary-color);
  padding: 30px 0;
}

.banner-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-line {
  font-size: 24px;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

.banner-text strong {
  font-weight: bold;
}

/* Value Section */
.value-section {
  background-color: var(--bg-light);
  padding-top: 110px !important;
}

.value-section .container {
  padding: 0;
}

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

.value-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  cursor: pointer;
  border-color: var(--secondary-color);
}

.value-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.value-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  border-radius: 20px;
}

.value-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  z-index: 2;

}

.value-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
  margin-top: 0;
  text-align: center;
}

.value-description {
  width: 300px;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  margin: 0 auto;
}

/* Seller Section */
.seller-section {
  background-color: white;
}

.seller-section .container {
  padding: 0;
}

.seller-section .section-title {
  margin-bottom: 4px;
}

.seller-benefits {
  background: var(--primary-color);
  border-radius: 50px;
  padding: 40px 60px 60px;
  margin-top: 40px;
  position: relative;
}

.why-ico {
  position: absolute;
  top: 43px;
  right: 79px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.benefits-title {
  font-size: 34px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: bold;
}

.checkmark {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.benefit-text {
  flex: 1;
}

.seller-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #1A2A39;
  font-size: 18px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 0 0 50px 50px;
}

/* Careers Section */
.careers-section {
  background-color: white;
}

.careers-section .container {
  padding: 0;
}

.careers-section .section-title {
  margin-bottom: 4px;
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  background: #F6F8FA;
  border-radius: 36px;
  gap: 54px;
  margin-top: 60px;
}

.career-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.careers-right{
  padding-top: 20px;
}
.careers-subtitle {
  font-size: 34px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.careers-benefits {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.6;
  word-wrap: break-word;
}

.open-positions {
  width: 90%;
  margin-top: 40px;
}

.positions-title {
  font-size: 34px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.search-box {
  width: 80%;
  height: 50px;
  line-height: 50px;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--text-dark);
  border-radius: var(--border-radius);
  background: #FFFFFF;
}

.search-input {
  flex: 1;
  padding: 15px 25px;
  font-size: 24px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  color: var(--text-gray);
}

.search-input:focus-visible {
  border: 1px solid transparent;
  outline: none;
  color: #000;
}

.search-btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 0 40px;
  padding-top: 2px;
  border-radius: var(--border-radius);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

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

.position-btn {
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--text-dark);
  border-radius: var(--border-radius);
  background: transparent;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.position-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.careers-contact {
  font-size: 20px;
  color: var(--text-dark);
  margin-top: 40px;
}

.careers-contact a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  padding: 80px 0 0;
}
.footer .container{
  padding: 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 24px;
}

.footer-address {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-section {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-section-disclaimer {
  position: relative;
  top: -104px;
  z-index: 1;
  pointer-events: none;
}

.footer-section-disclaimer .footer-links a {
  pointer-events: auto;
}

.footer-section-disclaimer .footer-title {
  text-align: right;
}

.footer-title {
  font-size: 45px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;

}
.footer-section-disclaimer .footer-links{
  text-align: right;
  justify-content: flex-end;
}
.contact-info {
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 10px 25px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 500;
  transition: var(--transition);
  width: fit-content;
}

.social-link:hover {
 cursor: pointer;
}

.social-icon {
  font-size: 28px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 24px;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  background-color: var(--bg-darker);
  padding: 20px 0;
  text-align: center;
}

.copyright {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .section-title {
    font-size: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 20px;
    padding: 6px 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-we-are-content {
    grid-template-columns: 1fr;
  }

  .careers-content {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .btn-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-menu.active {
    display: flex;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 34px;
  }

  .benefit-item {
    font-size: 24px;
  }

  .logo-text-large {
    font-size: 48px;
  }

  .logo-icon-large {
    font-size: 48px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.value-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}