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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16c79a;
  --accent-color: #ff6b6b;
  --text-color: #2d3436;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header and Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}

header.navbar-hidden {
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.logo {
  margin-right: 3.5rem;
}

.logo h1 {
  display: block;
  margin: 0;
  font-family: 'Poppins', Impact, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
}

.logo-pt {
  font-size: 1.1rem;
  color: #1a1a2e;
  font-weight: 700;
  text-shadow: 1px 1px 2px #16c79a22, 0 2px 8px #0001;
  letter-spacing: 1.5px;
}

.logo-main {
  font-size: 2rem;
  color: #1a1a2e;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px #16c79a22, 0 2px 8px #0001;
}

.logo-gold {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #16c79a 0%, #53ff45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px #16c79a22, 0 2px 8px #0001;
}

.nav-links {
  list-style: none;
  gap: 1.2rem;
  flex-wrap: nowrap;
  align-items: center;
  display: none; 
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

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

.hamburger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  display: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 199, 154, 0.8));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 8rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(45deg, var(--secondary-color), #0abf9b);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(22, 199, 154, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 199, 154, 0.4);
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Products Section */
.products {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--light-bg);
}

.products h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.products h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.product-img:last-child {
  margin-bottom: 0;
}

.product-container-modern {
  max-width: 1200px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(22,199,154,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-categories {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: var(--primary-color);
  flex-wrap: wrap;
  gap: 15px;
}

.product-category-btn {
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  position: relative;
  font-weight: 500;
  outline: none;
}

.product-category-btn:hover {
  color: var(--white);
}

.product-category-btn.active {
  color: var(--white);
  font-weight: 600;
}

.product-category-btn.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.product-content-area {
  display: flex;
  padding: 3rem;
  gap: 40px;
  height: auto;
  align-items: center;
}

.product-image-slider {
  flex: 1;
  max-width: 60%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-description {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-description-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-description-text {
  font-size: 1.1em;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-slider {
  width: 100%;
  height: 450px;
  min-height: 450px;
  max-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.product-image-slider .product-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.product-image-slider video.product-img {
  display: block !important;
  width: 100% !important;
  max-width: 100%;
  height: 100% !important;
  max-height: 450px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none !important;
  background-color: transparent;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 auto;
}

.product-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  height: 100%;
  width: 100%;
  background-color: #ffffff !important;
  border-radius: 8px;
  overflow: hidden;
}

.product-image-slider .swiper-button-prev,
.product-image-slider .swiper-button-next {
  display: flex !important;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 199, 154, 0.8), rgba(26, 26, 46, 0.8));
  backdrop-filter: blur(5px);
  border: 2px solid rgba(22, 199, 154, 0.5);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.product-image-slider .swiper-button-prev {
  left: 10px;
  right: auto;
}

.product-image-slider .swiper-button-next {
  right: 10px;
  left: auto;
}

.product-image-slider .swiper-button-prev:after,
.product-image-slider .swiper-button-next:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.product-image-slider .swiper-button-next:after {
  content: '\f105';
}

.product-image-slider .swiper-button-prev:after {
  content: '\f104';
}

.product-image-slider .swiper-button-prev:hover,
.product-image-slider .swiper-button-next:hover {
  background: linear-gradient(135deg, rgba(22, 199, 154, 0.9), rgba(26, 26, 46, 0.9));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.product-image-slider .swiper-button-prev:hover:after,
.product-image-slider .swiper-button-next:hover:after {
  color: var(--light-bg);
}

.product-image-slider .swiper-pagination,
.about-slider .swiper-pagination {
  bottom: 20px;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* About Section */
.about {
  padding: 0;
}

.about-content {
  max-width: none;
  margin: 0;
  text-align: left;
  padding: 0;
}

/* Modern Mission & Vision Section */
.mission-modern {
  padding: 6rem 0;
  background: #f8f9fa url('data:image/svg+xml,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'100%\' height=\'100%\'><rect fill=\'#f8f9fa\' fill-opacity=\'0.97\' width=\'100%\' height=\'100%\'/></svg>') repeat;
  color: #1a1a2e;
  position: relative;
  overflow: hidden;
}

.mission-modern-split-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(22,199,154,0.10);
  overflow: hidden;
  min-height: 400px;
}

.mission-modern-image-area {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  background-color: #e6f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-modern-image-area img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-area-number-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  font-weight: 900;
  color: #ff6b6b;
  opacity: 0.5;
  z-index: 1;
}

.image-area-number-bottom,
.image-area-line {
  display: none;
}

.mission-modern-content-area {
  flex: 1;
  overflow-x: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 3rem 2.5rem;
  position: relative;
}

.mission-modern-content-area::-webkit-scrollbar {
  display: none;
}

.mission-modern-content-area {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mission-modern-content-wrapper {
  display: flex;
  width: fit-content;
}

.mission-modern-block-content {
  flex: 0 0 100%;
  width: 100%;
  white-space: normal;
  padding-right: 2.5rem;
  box-sizing: border-box;
  position: relative;
}

.mission-modern-block-content .mission-modern-label {
  color: #16c79a;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.mission-modern-block-content .mission-modern-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #16c79a;
  margin-top: 0.3rem;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.mission-modern-block-content .mission-modern-number-text {
  font-size: 6rem;
  font-weight: 900;
  color: #ff6b6b;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.mission-modern-block-content .mission-modern-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0.5rem 0 1.5rem 0;
  color: #1a1a2e;
  position: relative;
  z-index: 1;
}

.mission-modern-block-content .mission-modern-block {
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}

.mission-modern-block-content .mission-modern-subtitle {
  color: #16c79a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mission-modern-block-content .mission-modern-list {
  list-style: none;
  padding-left: 0;
}

.mission-modern-block-content .mission-modern-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.1rem;
  font-size: 1.08rem;
  color: #2d3436;
  line-height: 1.7;
}

.mission-modern-block-content .mission-modern-list li::before {
  content: '\2022';
  color: #16c79a;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.mission-modern-block-content .mission-modern-list li b {
  color: #16c79a;
}

.mission-slider .swiper-button-prev,
.mission-slider .swiper-button-next,
.about-slider .swiper-button-prev,
.about-slider .swiper-button-next {
  position: absolute;
  top: 2rem;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mission-slider .swiper-button-prev,
.about-slider .swiper-button-prev {
  right: 60px;
  left: auto;
}

.mission-slider .swiper-button-next,
.about-slider .swiper-button-next {
  right: 1rem;
}

.mission-slider .swiper-button-prev:after,
.mission-slider .swiper-button-next:after,
.about-slider .swiper-button-prev:after,
.about-slider .swiper-button-next:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary-color);
  content: '\f104';
}

.mission-slider .swiper-button-next:after,
.about-slider .swiper-button-next:after {
  content: '\f105';
}

.mission-slider .swiper-button-prev:hover,
.mission-slider .swiper-button-next:hover,
.about-slider .swiper-button-prev:hover,
.about-slider .swiper-button-next:hover {
  background-color: rgba(22, 199, 154, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mission-slider .swiper-button-prev:hover:after,
.mission-slider .swiper-button-next:hover:after,
.about-slider .swiper-button-prev:hover:after,
.about-slider .swiper-button-next:hover:after {
  color: var(--white);
}

.mission-slider .swiper-pagination-bullet,
.about-slider .swiper-pagination-bullet,
.product-image-slider .swiper-pagination-bullet,
.product-image-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: #ccc;
  opacity: 0.8;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.mission-slider .swiper-pagination-bullet-active,
.about-slider .swiper-pagination-bullet-active,
.product-image-slider .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
  opacity: 1;
}

.mission-slider .swiper-pagination,
.about-slider .swiper-pagination {
  bottom: 20px;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Modern Our Team Section */
.team-modern-section {
  padding: 6rem 1rem;
  background: #f8f9fa;
}
.team-modern-header {
  text-align: center;
  margin-bottom: 3rem;
}
.team-modern-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.team-modern-subtitle {
  color: #16c79a;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.team-modern-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.team-modern-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(22,199,154,0.10), 0 1.5px 6px rgba(26,26,46,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  width: 320px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.team-modern-card:hover {
  box-shadow: 0 12px 40px rgba(22,199,154,0.18), 0 2px 12px rgba(26,26,46,0.10);
  transform: translateY(-6px) scale(1.03);
}
.team-modern-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(22,199,154,0.10);
  border: 2px solid #16c79a;
  background: #e6f7f3;
  background-image: url('/image/team-kenny.jpeg');
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}
.team-kenny-img {
  background-size: 100% auto;
  background-position: center center;
}
.team-ari-img {
  background-position: center 43.5%;
}
.team-modern-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}
.team-modern-role {
  color: #ff6b6b;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.team-modern-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.team-modern-social-link {
  color: #b0b0b0;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.team-modern-social-link.linkedin:hover {
  color: #16c79a;
  transform: scale(1.15);
}
.team-modern-social-link.github:hover {
  color: #1a1a2e;
  transform: scale(1.15);
}

.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-scroll a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(22, 199, 154, 0.2), rgba(26, 26, 46, 0.2));
  backdrop-filter: blur(5px);
  border: 2px solid rgba(22, 199, 154, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(22, 199, 154, 0.2);
  text-decoration: none;
}

.hero-scroll a:hover {
  background: linear-gradient(135deg, rgba(22, 199, 154, 0.3), rgba(26, 26, 46, 0.3));
  border-color: rgba(22, 199, 154, 0.5);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(22, 199, 154, 0.4);
}

.hero-scroll a i {
  color: #16c79a;
  font-size: 24px;
  animation: bounce 2s infinite;
  text-shadow: 0 0 10px rgba(22, 199, 154, 0.3);
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-5px);
  }
  60% {
      transform: translateY(-3px);
  }
}

img {
  max-width: 100%;
  height: auto;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
  will-change: opacity;
}

.hero-content, .product-card, .team-modern-card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.about-modern .mission-modern-image-area {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  background-color: #e6f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 600px;
}

.about-modern .mission-modern-image-area img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: 600px;
}

.mission-slider .swiper-button-prev,
.mission-slider .swiper-button-next {
  display: flex !important;
}

.about-modern .mission-modern-number-text {
  display: none;
}

/* Contact Section */
.contact {
  padding: 8rem 1rem;
  background: linear-gradient(135deg, var(--light-bg), #fff);
  position: relative;
  padding-top: 10rem;
  flex-grow: 1;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3em;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(10px);
  background: var(--secondary-color);
  color: var(--white);
}

.info-item:hover i {
  color: var(--white);
}

.info-item i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.info-item a {
  text-decoration: none;
  color: var(--text-color);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1.2rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.submit-button {
  padding: 1.2rem;
  background: linear-gradient(45deg, var(--secondary-color), #0abf9b);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 1.1rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(22, 199, 154, 0.4);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 6rem 1rem 1rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-contacts ul li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.8rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a i {
  font-size: 1.8rem;
}

.social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255,255,255,0.1);
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-content, .product-card, .about-content, .team-grid, .experience-content {
  animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .cta-button { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
  .product-card { margin: 0 1rem; }
  .contact-container { padding: 1.5rem; }
  .info-item { padding: 1rem; }
  .footer-content { gap: 2rem; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 0 1rem; }
  .contact-container { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content h1 { font-size: 3.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-container { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1025px) {
  .hero-content h1 { font-size: 4rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-container { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  header { padding: 0.8rem 1rem; }
  .navbar { padding: 0; }
  .logo { margin-right: 1rem; }
  .logo h1 { line-height: 1.2; }
  .logo-pt { font-size: 0.9rem; letter-spacing: 1px; }
  .logo-main { font-size: 1.5rem; letter-spacing: 1.5px; }
  .logo-gold { font-size: 1.6rem; letter-spacing: 1.5px; }
  .nav-links {
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      background: var(--white);
      padding: 2rem;
      flex-direction: column;
      align-items: center;
      transform: translateY(-150%);
      transition: var(--transition);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      z-index: 999;
  }
  .nav-links.active { transform: translateY(0); }
  .hamburger { display: flex; z-index: 1000; }
  
  .hero {
      padding-top: 60px;
      height: auto;
      min-height: 100vh;
      align-items: flex-start;
      padding-left: 1rem;
      padding-right: 1rem;
  }
  .hero-content { margin-top: 2rem; padding: 0; }
  .hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
  .hero-content p { font-size: 1.1rem; margin-bottom: 2rem; }
  .hero-buttons { flex-direction: column; gap: 0.05rem; align-items: center; width: 100%; }
  .cta-button { width: 100%; max-width: 300px; align-self: center; margin: 0 auto; }
  
  section { padding: 4rem 1rem; }
  
  .product-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0; }
  .product-card { margin: 0; }
  .product-container-modern { padding: 1rem; margin: 2rem auto; }
  .product-categories { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; justify-content: center; }
  .product-category-btn { font-size: 0.9rem; padding: 0.5rem 1rem; }
  .product-content-area { flex-direction: column; gap: 1.5rem; padding: 0; }
  .product-image-slider { width: 100%; height: 250px; }
  .product-image-slider .product-img { max-height: 250px; object-fit: contain; }
  .product-description { width: 100%; padding: 1rem; }
  .product-description-title { font-size: 1.5rem; text-align: center; }
  .product-description-text { font-size: 1rem; text-align: center; }
  
  .about-modern, .mission-modern { padding: 4rem 1rem; }
  .mission-modern-split-container { flex-direction: column; min-height: unset; border-radius: 16px; margin: 0 auto; }
  .mission-modern-image-area { width: 100%; height: 300px; }
  .mission-modern-image-area img { object-fit: cover; height: 100%; }
  .mission-modern-content-area { width: 100%; padding: 1.5rem; overflow-x: auto; white-space: nowrap; }
  .mission-modern-content-wrapper { display: flex; width: fit-content; }
  .mission-modern-block-content { flex: 0 0 100%; width: 100%; padding-right: 1rem; box-sizing: border-box; white-space: normal; }
  .mission-modern-block-content .mission-modern-number-text { font-size: 3rem; left: 1rem; top: 1rem; }
  .mission-modern-title { font-size: 2rem; margin: 0.3rem 0 1rem 0; }
  .mission-modern-list li { font-size: 1rem; }
  .mission-modern-subtitle { font-size: 1.1rem; margin-bottom: 0.5rem; }
  
  .team-modern-grid { flex-direction: column; align-items: center; gap: 2rem; max-width: 350px; margin: 0 auto; }
  .team-modern-card { width: 100%; max-width: 350px; padding: 1.5rem; }
  .team-modern-img { width: 120px; height: 120px; }
  .team-modern-name { font-size: 1.1rem; }
  .team-modern-role { font-size: 0.9rem; }
  
  .contact { padding-top: 8rem; padding-bottom: 4rem; }
  .contact-container { grid-template-columns: 1fr; padding: 1.5rem; gap: 2rem; }
  .contact-info { width: 100%; }
  .info-item { padding: 1.2rem; flex-direction: column; text-align: center; gap: 0.8rem; }
  .info-item i { margin-bottom: 0.5rem; }
  .contact-form { width: 100%; display: grid; gap: 1rem; }
  .contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem; font-size: 1rem; box-sizing: border-box; margin-bottom: 0.5rem; }
  .contact-form .submit-button { width: 100%; padding: 0.8rem; font-size: 1rem; box-sizing: border-box; margin-bottom: 0; }
  
  footer { padding-top: 4rem; padding-bottom: 1rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { margin-top: 2rem; padding-top: 0.8rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  header { padding: 0.5rem 0.8rem; }
  .logo-pt { font-size: 0.8rem; }
  .logo-main { font-size: 1.3rem; }
  .logo-gold { font-size: 1.4rem; }
  .nav-links { top: 50px; }
  .hero { padding-top: 50px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.9rem; }
  .about-modern-title, .mission-modern-title { font-size: 1.8rem; }
  .about-modern-desc, .mission-modern-list li, .mission-modern-subtitle { font-size: 0.9rem; }
  .team-modern-name { font-size: 1.1rem; }
  .team-modern-role { font-size: 0.9rem; }
  .contact-form input, .contact-form textarea, .submit-button { font-size: 0.9rem; }
  .footer-bottom p { font-size: 0.8rem; }
  section { padding: 3rem 0.8rem; }
  .contact-container { padding: 1rem; }
  .about-modern-content, .mission-modern-content { padding: 1.5rem 1rem; }
}

@media (min-width: 769px) {
  .nav-links { position: static; display: flex; flex-direction: row; padding: 0; transform: none; box-shadow: none; background: transparent; }
  .nav-links li { margin: 0 1rem; }
  .hamburger { display: none; }
  .hero-buttons { flex-direction: row; justify-content: center; }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #0abf9b; }

.about-modern {
  padding: 6rem 0;
  background: #f8f9fa url('data:image/svg+xml,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'100%\' height=\'100%\'><rect fill=\'#f8f9fa\' fill-opacity=\'0.97\' width=\'100%\' height=\'100%\'/></svg>') repeat;
  color: #1a1a2e;
}

.about-slider .mission-modern-block-content .mission-modern-label {
  color: #16c79a;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.about-slider .mission-modern-block-content .mission-modern-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #16c79a;
  margin-top: 0.3rem;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.about-slider .mission-modern-block-content .mission-modern-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0.5rem 0 1.5rem 0;
  color: #1a1a2e;
  position: relative;
  z-index: 1;
}

.about-slider .mission-modern-block-content .mission-modern-list {
  font-size: 1.15rem;
  color: #2d3436;
  line-height: 1.7;
  z-index: 1;
  position: relative;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 900px) {
  .about-slider .mission-modern-block-content .mission-modern-number-text { font-size: 3.2rem; left: 1.2rem; top: 1.2rem; }
  .about-slider .mission-modern-block-content .mission-modern-title { font-size: 2rem; margin: 0.3rem 0 1rem 0; }
  .about-slider .mission-modern-block-content .mission-modern-list { font-size: 1rem; }
}

@media (max-width: 600px) {
  .about-slider .mission-modern-block-content .mission-modern-number-text { font-size: 3rem; left: 1rem; top: 1rem; }
}

@media (min-width: 901px) {
  .nav-links {
      position: static !important;
      display: flex !important;
      flex-direction: row !important;
      padding: 0 !important;
      box-shadow: none !important;
      background: transparent !important;
      z-index: auto !important;
      overflow-y: visible !important;
  }
  .nav-links li { margin: 0 1rem; width: auto; text-align: left; }
  .nav-links a { font-size: 1rem; padding: 0.2rem 0.5rem; display: inline-block; }
  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary-color);
      transition: var(--transition);
  }
  .nav-links a:hover::after { width: 100%; }
  .hamburger { display: none !important; }
  .hero-buttons { flex-direction: row; justify-content: center; gap: 20px; }
}

@media (max-width: 900px) {
  header { padding: 0.5rem 1rem; }
  .navbar { padding: 0; flex-wrap: nowrap; }
  .logo { margin-right: 1rem; }
  .logo h1 { line-height: 1.2; }
  .logo-pt { font-size: 0.9rem; letter-spacing: 1px; }
  .logo-main { font-size: 1.5rem; letter-spacing: 1.5px; }
  .logo-gold { font-size: 1.6rem; letter-spacing: 1.5px; }
  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background: var(--white);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 999;
  }
  .nav-links.active { right: 0; }
  .nav-links li { white-space: nowrap; width: 100%; text-align: center; }
  .nav-links a { font-size: 1.2rem; padding: 0.5rem 1rem; display: inline-block; position: relative; }
  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary-color);
      transition: var(--transition);
  }
  .nav-links a:hover::after, .nav-links a:focus::after { width: 100%; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1000; }
  .hero {
      padding-top: 80px;
      height: auto;
      min-height: 100vh;
      align-items: flex-start;
      padding-left: 1rem;
      padding-right: 1rem;
  }
  .hero-content { margin-top: 2rem; padding: 0; }
  .hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
  .hero-content p { font-size: 1.1rem; margin-bottom: 2rem; }
  .hero-buttons { flex-direction: column; gap: 0.2rem; width: 100%; align-items: center; }
  .cta-button { width: 100%; max-width: 300px; }
  section { padding: 4rem 1rem; }
  .product-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0; }
  .product-card { margin: 0; }
  .product-container-modern { padding: 1rem; margin: 2rem auto; }
  .product-categories { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; justify-content: center; }
  .product-category-btn { font-size: 0.9rem; padding: 0.5rem 1rem; }
  .product-content-area { flex-direction: column; gap: 1.5rem; padding: 0; }
  .product-image-slider { width: 100%; height: 250px; }
  .product-image-slider .product-img { max-height: 250px; object-fit: contain; }
  .product-description { width: 100%; padding: 1rem; }
  .product-description-title { font-size: 1.5rem; text-align: center; }
  .product-description-text { font-size: 1rem; text-align: center; }
  .about-modern, .mission-modern { padding: 4rem 1rem; }
  .mission-modern-split-container { flex-direction: column; min-height: unset; border-radius: 16px; margin: 0 auto; }
  .mission-modern-image-area { width: 100%; height: 300px; }
  .mission-modern-image-area img { object-fit: cover; height: 100%; }
  .mission-modern-content-area { width: 100%; padding: 1.5rem; overflow-x: auto; white-space: nowrap; }
  .mission-modern-content-wrapper { display: flex; width: fit-content; }
  .mission-modern-block-content { flex: 0 0 100%; width: 100%; padding-right: 1rem; box-sizing: border-box; white-space: normal; }
  .mission-modern-block-content .mission-modern-number-text { font-size: 3rem; left: 1rem; top: 1rem; }
  .mission-modern-title { font-size: 2rem; margin: 0.3rem 0 1rem 0; }
  .mission-modern-list li { font-size: 1rem; }
  .mission-modern-subtitle { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .team-modern-grid { flex-direction: column; align-items: center; gap: 2rem; max-width: 350px; margin: 0 auto; }
  .team-modern-card { width: 100%; max-width: 350px; padding: 1.5rem; }
  .team-modern-img { width: 120px; height: 120px; }
  .team-modern-name { font-size: 1.1rem; }
  .team-modern-role { font-size: 0.9rem; }
  .contact { padding-top: 8rem; padding-bottom: 4rem; }
  .contact-container { grid-template-columns: 1fr; padding: 1.5rem; gap: 2rem; }
  .contact-info { width: 100%; }
  .info-item { padding: 1.2rem; flex-direction: column; text-align: center; gap: 0.8rem; }
  .info-item i { margin-bottom: 0.5rem; }
  .contact-form { width: 100%; display: grid; gap: 1rem; }
  .contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem; font-size: 1rem; box-sizing: border-box; margin-bottom: 0.5rem; }
  .contact-form .submit-button { width: 100%; padding: 0.8rem; font-size: 1rem; box-sizing: border-box; margin-bottom: 0; }
  footer { padding-top: 4rem; padding-bottom: 1rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { margin-top: 2rem; padding-top: 0.8rem; font-size: 0.9rem; }
}

@media (min-width: 1201px) {
  .nav-links a { display: flex; }
  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary-color);
      transition: var(--transition);
      opacity: 1;
  }
  .nav-links a:hover::after { width: 100%; }
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .navbar { position: relative; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 90vw;
    margin: 0 auto;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    height: auto;
    padding: 1.2rem 0;
    transition: none;
    border-radius: 12px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.2rem 0.5rem; display: inline-block; position: relative; width: auto; text-align: center; }
  .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background: var(--secondary-color);
      transition: var(--transition);
      margin: 0 auto;
  }
  .nav-links a:hover::after, .nav-links a:focus::after { width: 100%; }
  .mission-modern-block-content .mission-modern-number-text { font-size: 3.2rem; left: 0; top: 1.2rem; }
}

@media (max-width: 600px) {
  .mission-modern-block-content .mission-modern-number-text { font-size: 3rem; left: 0; top: 1rem; }
}

@media (max-width: 1200px) {
  .mission-modern-block-content .mission-modern-number-text { left: 0 !important; top: 0 !important; font-size: 4.5rem !important; }
  .product-container-modern { padding: 1rem; margin: 2rem auto 0 auto; border-radius: 16px; box-shadow: 0 8px 40px rgba(22,199,154,0.10); }
  .product-categories { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; justify-content: center; text-align: center; }
  .product-content-area { flex-direction: column; gap: 1.5rem; padding: 0; align-items: center; }
  .product-image-slider { width: 100%; max-width: 100%; height: auto; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; }
  .product-slider { height: auto !important; min-height: auto !important; max-height: none !important; }
  .product-image-slider .product-img { max-width: 100%; width: 100%; height: auto; object-fit: contain; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin: 0 auto; }
  .product-image-slider video.product-img { aspect-ratio: 16 / 9; max-height: none; }
  .product-description { width: 100%; padding: 1rem 0.5rem; text-align: center; justify-content: center; }
  .product-description-title { font-size: 1.3rem; text-align: center; }
  .product-description-text { font-size: 1rem; text-align: center; }
  .cta-button { width: 100%; max-width: 300px; margin: 1.5rem auto 0 auto; align-self: center; display: block; }
  .hero-buttons { flex-direction: column; gap: 0.05rem; width: 100%; align-items: center; }
  .mission-modern-split-container { flex-direction: column; min-height: unset; border-radius: 16px; margin: 0 auto; max-width: 600px; width: 100%; }
  .mission-modern-image-area { width: 100%; max-width: 100%; height: auto; min-height: 180px; max-height: 300px; aspect-ratio: 4/3; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
  .mission-modern-image-area img { width: 100%; height: auto; max-height: 300px; object-fit: cover; border-radius: 12px; }
  .mission-modern-content-area { width: 100%; padding: 1.2rem 0.8rem; box-sizing: border-box; }
  .mission-modern-title { font-size: 1.5rem; }
  .mission-modern-block-content .mission-modern-number-text { font-size: 3rem !important; }
  .about-modern .mission-modern-split-container { max-width: 600px; width: 100%; margin: 2rem auto 0 auto; }
  .about-modern .mission-modern-image-area { width: 100%; max-width: 100%; height: auto; min-height: 180px; max-height: 300px; aspect-ratio: 4/3; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
  .about-modern .mission-modern-image-area img { width: 100%; height: auto; max-height: 300px; object-fit: cover; border-radius: 12px; }
  .about-modern .mission-modern-content-area { width: 100%; padding: 1.2rem 0.8rem; box-sizing: border-box; }
}

@media (max-width: 600px) {
  .product-container-modern { padding: 0.5rem; }
  .product-categories { gap: 0.2rem; font-size: 0.95rem; }
  .product-description-title { font-size: 1.1rem; }
  .cta-button { font-size: 1rem; padding: 0.8rem 1.2rem; }
  .mission-modern-split-container { max-width: 98vw; padding: 0.5rem; }
  .mission-modern-image-area { min-height: 120px; max-height: 180px; aspect-ratio: 4/3; }
  .mission-modern-image-area img { max-height: 180px; border-radius: 8px; }
  .mission-modern-title { font-size: 1.1rem; }
  .mission-modern-block-content .mission-modern-number-text { font-size: 2.2rem !important; }
  .about-modern .mission-modern-split-container, .product-container-modern { max-width: 98vw; padding: 0.5rem; }
  .about-modern .mission-modern-image-area, .product-image-slider { min-height: 120px; max-height: none; aspect-ratio: auto; }
  .about-modern .mission-modern-image-area img, .product-image-slider .product-img { max-height: 180px; border-radius: 8px; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-links.active { display: flex !important; }
  .hamburger { display: flex !important; }
}

@media (min-width: 769px) {
  .nav-links {
      display: flex !important;
      position: static !important;
      flex-direction: row !important;
      top: auto !important;
      right: auto !important;
      width: auto !important;
      height: auto !important;
      padding: 0 !important;
      box-shadow: none !important;
      background: transparent !important;
      z-index: auto !important;
      overflow-y: visible !important;
      transform: none !important;
  }
  .hamburger { display: none !important; }
}

.about-image-modern-stack {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-modern-stack.animated-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stack-img-wrapper {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-back {
  width: 220px;
  height: 220px;
  top: 40px;
  left: 20px;
  z-index: 1;
  opacity: 0.8;
  transform: rotate(-6deg);
}

.img-mid {
  width: 260px;
  height: 260px;
  bottom: 40px;
  right: 20px;
  z-index: 2;
  opacity: 0.9;
  transform: rotate(4deg);
}

.img-front {
  width: 320px;
  height: 400px;
  z-index: 3;
  box-shadow: 0 25px 50px rgba(22, 199, 154, 0.25);
  border: 4px solid #fff;
  transform: rotate(-2deg);
}

.about-image-modern-stack:hover .img-back {
  transform: rotate(-8deg) translateX(-20px) translateY(-10px);
}

.about-image-modern-stack:hover .img-mid {
  transform: rotate(6deg) translateX(20px) translateY(10px);
}

.about-image-modern-stack:hover .img-front {
  transform: scale(1.05) rotate(0deg) translateY(-5px);
  box-shadow: 0 30px 60px rgba(22, 199, 154, 0.3);
}

.deco-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, var(--secondary-color), #53ff45);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
}

.about-image-container {
  overflow: visible !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .about-image-modern-stack { height: 400px; margin-bottom: 2rem; }
  .img-back { width: 50%; height: 45%; top: 10px; left: 10px; }
  .img-mid { width: 180px; height: 180px; bottom: 30px; right: 10px; }
  .img-front { width: 220px; height: 280px; }
  .about-modern .mission-modern-image-area { height: 300px; border-radius: 16px; }
  .about-img-slider, .about-img-slider .swiper-slide img { border-radius: 16px; }
}

.about-modern .mission-modern-image-area {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-radius: 32px;
}

.about-img-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 32px; 
}

.about-img-slider .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

.about-img-slider .swiper-pagination {
  bottom: 20px !important;
  text-align: center;
  width: 100%;
  z-index: 10;
}

.about-img-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.about-img-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary-color);
  width: 30px;
  border-radius: 5px;
}

/* ================================================================== */
/* FIX UNTUK MEMAKSA FOTO KIRI - TEKS KANAN (DESKTOP)                 */
/* Tambahkan di baris paling akhir file styles.css Anda               */
/* ================================================================== */

@media (min-width: 901px) {
    /* Menargetkan container About Us dan Mission */
    #about .mission-modern-split-container,
    #mission .mission-modern-split-container {
        display: flex !important;
        flex-direction: row !important; /* Pastikan berjejer ke samping */
        justify-content: flex-start !important;
        align-items: stretch !important;
    }

    /* Area Gambar (KIRI) */
    #about .mission-modern-image-area,
    #mission .mission-modern-image-area {
        flex: 0 0 40% !important; /* Lebar tetap 40% */
        max-width: 40% !important;
        order: 1 !important; /* Paksa urutan pertama (Kiri) */
    }

    /* Area Teks Konten (KANAN) */
    #about .mission-modern-content-area,
    #mission .mission-modern-content-area {
        flex: 1 !important; /* Mengisi sisa ruang */
        order: 2 !important; /* Paksa urutan kedua (Kanan) */
    }
}

/* ========================================= */
/* STYLE UNTUK 4 VIDEO GRID (MODE POTRAIT)   */
/* ========================================= */

.video-showcase-section {
    padding: 80px 20px;
    /* This is the main section background.
       Change it to match your site's background if it's not already. */
    background-color: var(--light-bg); 
}

.video-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-showcase-container .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.video-showcase-container .section-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Grid Layout: 4 Kolom */
.video-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.video-card {
    /* PERUBAHAN UTAMA: Hapus background putih dan border */
    background: transparent;
    border: none; 
    border-radius: 15px;
    overflow: hidden;
    /* Shadow is still there for a nice effect, but you can remove it */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22, 199, 154, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Make sure this is also transparent or black */
    background: transparent;
    /* Rasio 9:16 untuk Potrait */
    aspect-ratio: 9 / 16; 
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px; /* Add border-radius to the video itself */
}

/* Responsif untuk Tablet */
@media (max-width: 1024px) {
    .video-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Responsif untuk HP */
@media (max-width: 600px) {
    .video-grid-4 {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    .video-showcase-container .section-title {
        font-size: 2rem;
    }
}

/* ========================================= */
/* NEW ABOUT US LAYOUT - PICTURES LEFT, TEXT RIGHT */
/* ========================================= */

.about-simple-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.about-left-images {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-left-images .about-img-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-left-images .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 2296 / 4080;
}

.about-left-images .swiper-slide video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 2296 / 4080;
    border-radius: 20px;
}

.about-right-text {
    flex: 1;
    text-align: left;
}

.about-label {
    color: #16c79a;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.about-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #16c79a;
    margin-top: 0.3rem;
    border-radius: 2px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0.5rem 0 1.5rem 0;
    color: #1a1a2e;
}

.about-description {
    font-size: 1.08rem;
    color: #2d3436;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .about-simple-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-left-images {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-right-text {
        text-align: center;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

/* ========================================= */
/* PROTEKSI GAMBAR (ANTI DOWNLOAD/DRAG)      */
/* ========================================= */

img, video {
    /* Mencegah user menyeleksi gambar */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

    /* Mencegah user menyeret gambar ke desktop */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    
    /* Opsional: Mencegah interaksi pointer (hati-hati, ini bisa mematikan klik video) */
    /* pointer-events: none; */ 
}