/* CSS Variables for Paron Indonesia Brand Colors */
:root {
  --primary-blue: #1e4a9b;
  --primary-orange: #ff7a00;
  --light-blue: #2b5cb8;
  --dark-blue: #1a3f7a;
  --light-orange: #ff8c1a;
  --dark-orange: #e66b00;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--light-blue) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--light-orange) 100%
  );
  --gradient-mixed: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

.section-padding {
  padding: 100px 0;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  width: 50px;
  height: 50px;
}

.loader-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.loader-line-wrap {
  width: 3px;
  height: 100%;
  position: relative;
}

.loader-line {
  position: absolute;
  width: 100%;
  height: 15px;
  background: #fff;
  border-radius: 2px;
  animation: loaderAnim 1.5s infinite ease-in-out;
}

.loader-line-wrap:nth-child(1) .loader-line {
  animation-delay: -1.2s;
}
.loader-line-wrap:nth-child(2) .loader-line {
  animation-delay: -1.1s;
}
.loader-line-wrap:nth-child(3) .loader-line {
  animation-delay: -1s;
}
.loader-line-wrap:nth-child(4) .loader-line {
  animation-delay: -0.9s;
}
.loader-line-wrap:nth-child(5) .loader-line {
  animation-delay: -0.8s;
}

@keyframes loaderAnim {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}

#loading-screen h3 {
  color: white;
  margin-top: 20px;
  font-weight: 300;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
  background: transparent;
  border: none;
  outline: none;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  display: block;
}

/* Nav Toggle Animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
}

.dropdown-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--light-orange)
  );
  color: white;
  padding-left: 2rem;
}

.dropdown-link:hover::before {
  content: "▸";
  margin-right: 0.5rem;
  color: white;
}

/* Mobile Dropdown Menu Responsive */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
  }

  .dropdown-menu li {
    margin-left: 1rem;
  }

  .dropdown-link {
    color: #555;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .dropdown-link:hover {
    background: transparent;
    color: var(--primary-orange);
    padding-left: 0;
  }

  .dropdown-toggle i {
    display: none;
  }

  .nav-menu.active .dropdown-menu {
    display: block;
  }
}

/* Force show nav-toggle on mobile screens */
@media screen and (max-width: 768px) {
  .navbar .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media screen and (max-width: 576px) {
  .navbar .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background: url("/website_paron/image/bg_web4.jpg") center/cover no-repeat,
    var(--primary-blue);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: heroShape1 20s ease-in-out infinite;
}

.hero::after {
  display: none;
}

@keyframes heroShape1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  color: white;
  max-width: 100%;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.text-gradient {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Enhanced header styling for services section */
.services .section-header {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* About Overview Section */
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex; /* Added to ensure child image fills the space */
}

.image-wrapper img {
  width: 100%;
  height: auto; /* Changed from fixed height to auto */
  display: block; /* Added to remove extra space at the bottom */
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-secondary);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.experience-badge .text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-summary h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.about-summary p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Vision, Mission, Values Section */
.about-vmv {
  margin-top: 2rem;
}

.vmv-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.vmv-item {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: fit-content;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent;
}

.vision-item {
  border-top-color: #3b82f6;
}

.mission-item {
  border-top-color: #ff6b00;
}

.values-item {
  border-top-color: #10b981;
}

.vmv-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 120px;
  opacity: 0.05;
  transition: all 0.4s ease;
}

.vision-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%233b82f6' d='M256 96a160 160 0 1 0 160 160A160.24 160.24 0 0 0 256 96zm0 192a32 32 0 1 1 32-32 32.06 32.06 0 0 1-32 32z'/%3E%3C/svg%3E");
}

.mission-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff6b00' d='M256 160a96 96 0 1 0 96 96 96.15 96.15 0 0 0-96-96zm0 160a64 64 0 1 1 64-64 64.07 64.07 0 0 1-64 64z'/%3E%3Cpath fill='%23ff6b00' d='M256 16a240 240 0 1 0 240 240A240 240 0 0 0 256 16zm0 424c-101.69 0-184-82.31-184-184a185.66 185.66 0 0 1 22.25-88L350 423.75A185.7 185.7 0 0 1 256 440zm161.75-96L162 88.25A185.67 185.67 0 0 1 256 72c101.69 0 184 82.31 184 184a185.67 185.67 0 0 1-22.25 88z'/%3E%3C/svg%3E");
}

.values-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2310b981' d='M464 48c-67.61.29-117.87 9.6-152.78 28.5-39.78 21.58-66.14 53.89-78.4 76.9-15.52-6.82-33.75-10.2-54.82-10.2s-39.3 3.38-54.82 10.2c-12.26-23-38.62-55.32-78.4-76.9C10.87 57.6-39.4 48.29-107 48H-136v32h29c59.26.22 108.14 7.38 137.64 23.67 31.07 17.19 50.44 43.51 60 63.06a8 8 0 0 0 14.54.16c37.28-78.8 128.12-88.43 152.47-90.55 56.32-4.15 126.79 5.99 163.62 37.31a8 8 0 0 0 14.16-4.99v-60h-15.98c.1 0 .04-.01-.05-.01z'/%3E%3C/svg%3E");
}

.vmv-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vmv-item:hover::before {
  opacity: 0.08;
  transform: scale(1.1);
}

.vmv-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.vmv-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%; /* Changed from square to circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.vmv-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  top: -50%;
  left: -50%;
}

.vision-item .vmv-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.mission-item .vmv-icon {
  background: linear-gradient(135deg, #ff6b00, #dc2626);
}

.values-item .vmv-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.vmv-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  position: relative;
  padding-bottom: 15px;
}

.vmv-header h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: currentColor;
  opacity: 0.3;
}

.vmv-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Mission specific styles */
.mission-item .mission-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mission-item .mission-item {
  padding: 1.5rem;
  background: rgba(255, 107, 0, 0.03);
  border-radius: 16px;
  border-left: 5px solid #ff6b00;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.mission-item .mission-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 107, 0, 0.05);
  transition: all 0.5s ease;
  z-index: 0;
}

.mission-item .mission-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.mission-item .mission-item:hover::before {
  width: 100%;
}

.mission-item .mission-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b00;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.mission-item .mission-item h4 i {
  font-size: 1rem;
  background: #ff6b00;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.2);
}

.mission-item .mission-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Values specific styles */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 122, 0, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 122, 0, 0.1);
  transform: translateX(5px);
}

.value-item i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.value-item span {
  font-weight: 500;
  color: #333;
}

.values-description {
  font-style: italic;
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services {
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    #e3f2fd 25%,
    #fff3e0 50%,
    #f8f9fa 75%,
    #e8f5e8 100%
  );
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(30, 74, 155, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(255, 122, 0, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 74, 155, 0.05) 0%,
    rgba(30, 74, 155, 0.02) 40%,
    transparent 70%
  );
  animation: floatShape 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

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

.service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(248, 250, 252, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
}

/* Add subtle gradient variations for individual cards */
.service-card:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(30, 74, 155, 0.1) 0%,
    transparent 50%,
    rgba(255, 122, 0, 0.1) 100%
  );
  pointer-events: none;
}

.service-card:nth-child(even)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 122, 0, 0.1) 0%,
    transparent 50%,
    rgba(30, 74, 155, 0.1) 100%
  );
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(30, 74, 155, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(240, 248, 255, 0.98) 100%
  );
}

.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

/* Portfolio Section */
.portfolio {
  background: #f8f9fa;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-blue);
  color: white;
}

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

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 74, 155, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.portfolio-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: white;
  color: var(--primary-blue);
  transform: scale(1.1);
}

/* Team Section */
.team {
  background: white;
}

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

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 74, 155, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

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

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: white;
  color: var(--primary-blue);
  transform: scale(1.1);
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.team-position {
  color: var(--primary-orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-details p,
.contact-details a {
  color: #666;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-orange);
}

.contact-map {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
  width: 100%;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.map-header p {
  color: #666;
  font-size: 1rem;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-footer {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #e1e5e9;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #666;
}

.map-info-item i {
  color: var(--primary-orange);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.map-directions {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.map-directions:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

/* Mobile responsive styles for contact-map */
@media (max-width: 768px) {
  .contact-map {
    padding: 1.5rem;
  }

  .map-header h3 {
    font-size: 1.3rem;
  }

  .map-wrapper {
    height: 300px;
  }

  .map-footer {
    padding: 1rem;
  }

  .map-info {
    gap: 0.8rem;
  }

  .map-info-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .contact-map {
    padding: 1rem;
  }

  .map-header h3 {
    font-size: 1.2rem;
  }

  .map-header p {
    font-size: 0.9rem;
  }

  .map-wrapper {
    height: 250px;
  }

  .map-info {
    flex-direction: column;
    gap: 0.6rem;
  }

  .map-info-item {
    font-size: 0.8rem;
    justify-content: flex-start;
  }
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: footerShape1 20s ease-in-out infinite;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--light-orange);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  animation: footerShape2 15s ease-in-out infinite reverse;
}

@keyframes footerShape1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes footerShape2 {
  0%,
  100% {
    transform: translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateX(20px) rotate(90deg);
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.footer-brand:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer-logo {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1) saturate(0) brightness(1)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo {
  filter: brightness(0) invert(1) saturate(0) brightness(1)
    drop-shadow(0 4px 12px rgba(255, 122, 0, 0.3));
  transform: scale(1.05);
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff 0%, #ff7a00 80%, #ffaa44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.footer-description {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--light-orange) 100%
  );
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
  border-color: var(--primary-orange);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "▸";
  color: var(--primary-orange);
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links a:hover::before {
  color: var(--light-orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 12px;
  border-left: 3px solid var(--primary-orange);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  transform: translateX(5px);
  border-left-color: var(--light-orange);
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.2);
}

.contact-info-item i {
  width: 20px;
  color: var(--primary-orange);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-item span,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* About Section Tablet Responsive */
  .about-overview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    justify-content: center;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-image {
    grid-gap: 15px;
    padding: 15px;
  }

  .floating-card {
    width: 160px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    padding: 2rem;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-grid,
  .portfolio-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Services section responsive adjustments */
  .services::after {
    width: 300px;
    height: 300px;
    top: -15%;
    right: -15%;
  }

  .services .section-header {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }

  .service-image {
    height: 180px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0 1rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .mission-list {
    gap: 1rem;
  }

  .mission-item {
    padding: 1rem;
  }

  .mission-item h4 {
    font-size: 1rem;
    gap: 0.6rem;
  }

  .mission-item p {
    font-size: 0.9rem;
  }

  /* About Section Mobile Responsive */
  .about-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    justify-content: center;
    gap: 1rem;
  }

  .stat-item {
    min-width: 100px;
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vmv-item {
    padding: 2rem;
  }

  .vmv-header {
    margin-bottom: 1.5rem;
  }

  .vmv-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .values-list {
    gap: 0.8rem;
  }

  .value-item {
    padding: 0.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Mobile adjustments for services background */
  .services::after {
    width: 200px;
    height: 200px;
    top: -10%;
    right: -20%;
  }

  .services .section-header {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 15px;
  }

  .service-card {
    border-radius: 15px;
    padding: 2rem;
  }

  .service-card,
  .contact-form,
  .contact-map {
    padding: 2rem;
  }

  .service-image {
    height: 150px;
  }

  .hero-image {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    padding: 15px;
    height: auto;
    min-height: 350px;
  }

  .floating-card {
    padding: 15px;
    width: 130px;
    font-size: 0.8rem;
    backdrop-filter: blur(12px);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 249, 250, 0.98) 100%
    );
    border: 1px solid rgba(30, 74, 155, 0.2);
    box-shadow: 0 8px 25px rgba(30, 74, 155, 0.15);
    color: #333;
    position: relative;
  }

  .floating-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .floating-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .floating-card:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  .floating-card h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-blue);
  }

  .floating-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    opacity: 0.85;
    color: #555;
  }

  .floating-card i {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--primary-orange);
    filter: drop-shadow(0 2px 4px rgba(255, 122, 0, 0.3));
  }

  /* Touch-friendly interactions for mobile */
  .floating-card:active {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-orange);
  }

  .floating-card:active i {
    color: var(--primary-orange);
    transform: scale(1.2);
  }

  /* Disable hover effects on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .floating-card:hover {
      background: rgba(255, 255, 255, 0.95);
      transform: translateY(0) scale(1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .floating-card:hover i {
      color: var(--primary-blue);
      transform: scale(1);
    }
  }

  .service-card,
  .contact-form,
  .contact-map {
    padding: 2rem;
  }

  .service-image {
    height: 150px;
  }

  .hero-image {
    height: 300px;
    min-height: 250px;
  }
}

@media (max-width: 375px) {
  .floating-card {
    padding: 12px;
    width: 110px;
    font-size: 0.75rem;
  }

  .floating-card:nth-child(1) {
    top: 12%;
    right: 8%;
    --rotation: -5deg;
  }

  .floating-card:nth-child(2) {
    bottom: 20%;
    left: 8%;
    --rotation: 6deg;
  }

  .floating-card:nth-child(3) {
    top: 45%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    --rotation: -3deg;
  }

  .floating-card h3 {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .floating-card p {
    font-size: 0.7rem;
  }

  .floating-card i {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .floating-card {
    display: none;
  }
}

/* Mobile Landscape Orientation */
@media (max-height: 480px) and (orientation: landscape) {
  .floating-card {
    padding: 10px;
    width: 100px;
    font-size: 0.7rem;
  }

  .floating-card:nth-child(1) {
    top: 15%;
    right: 10%;
    --rotation: -4deg;
  }

  .floating-card:nth-child(2) {
    bottom: 15%;
    left: 10%;
    --rotation: 5deg;
  }

  .floating-card:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    --rotation: -3deg;
  }

  .floating-card h3 {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .floating-card p {
    font-size: 0.65rem;
  }

  .floating-card i {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll Effects */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-mixed);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-primary);
}

/* Products Section Styles */
.products-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../image/bg_kantor.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.products-section > .container {
  position: relative;
  z-index: 1;
}

.products-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}

.epson-logo-section {
  flex: 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.epson-logo {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.products-grid-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.products-row {
  display: flex;
  gap: 20px;
}

.top-row {
  justify-content: flex-start;
}

.bottom-row {
  justify-content: space-between;
}

.top-row .product-card {
  flex: 0 0 calc(50% - 10px);
}

.bottom-row .product-card {
  flex: 0 0 calc(33.333% - 14px);
}

.product-card {
  background-color: #ff9500;
  border-radius: 20px;
  padding: 0;
  display: flex;
  min-height: 250px;
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 149, 0, 0.3);
}

.product-content {
  flex: 1;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e40af;
  line-height: 1.2;
  margin: 0;
}

.product-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  /* filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.2)); */
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Products Section Responsive Design */
@media (max-width: 1200px) {
  .products-layout {
    gap: 30px;
  }

  .epson-logo-section {
    flex: 0 0 200px;
  }

  .product-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .products-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .epson-logo-section {
    flex: none;
    padding-top: 0;
  }

  .products-grid-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-row {
    flex-direction: column;
    gap: 15px;
  }

  .top-row .product-card,
  .bottom-row .product-card {
    flex: 1;
  }

  .product-card {
    min-height: 220px;
  }

  .product-title {
    font-size: 20px;
  }

  .epson-logo-section {
    flex: 0 0 150px;
  }

  .product-image {
    min-height: 180px;
  }

  .product-image img {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .product-card {
    flex-direction: column;
    min-height: 280px;
  }

  .product-content {
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .product-image {
    padding: 15px 20px 25px;
    min-height: 160px;
  }

  .product-image img {
    height: 140px;
    width: auto;
    max-width: 90%;
  }
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  padding: 120px 0 80px;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.about-hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 0.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-orange) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;

  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  min-width: 180px;
}

/* Responsive untuk About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
    min-height: 300px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }
}

/* About CTA Button Styles */
.about-cta {
  margin-top: 2rem;
  text-align: center;
}

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
  min-width: 280px;
  font-weight: 600;
}

.about-cta-subtitle {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  color: #666;
  font-style: italic;
}

/* Products Carousel Styles - Multi-slide Preview Version */
.products-carousel-container {
  width: 100%;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.products-carousel {
  position: relative;
  height: 400px;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.carousel-slide {
  position: absolute;
  width: 1000px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: pointer;
  transform-origin: center;
  opacity: 0;
  transform: translateX(100%) scale(0.7);
  z-index: 1;
}

/* Active slide - fully visible and centered */
.carousel-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
}

/* Previous slide - left side with transparency */
.carousel-slide.prev {
  opacity: 0.6;
  transform: translateX(-65%) scale(0.8);
  z-index: 2;
}

/* Next slide - right side with transparency */
.carousel-slide.next {
  opacity: 0.6;
  transform: translateX(65%) scale(0.8);
  z-index: 2;
}

/* Hover effects for preview slides */
.carousel-slide.prev:hover,
.carousel-slide.next:hover {
  opacity: 0.8;
  transform: translateX(-65%) scale(0.85);
}

.carousel-slide.next:hover {
  transform: translateX(65%) scale(0.85);
}

/* All other slides - completely hidden */
.carousel-slide.hidden {
  opacity: 0;
  transform: translateX(200%) scale(0.5);
  z-index: 0;
  pointer-events: none;
}

.product-slide-card {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 250px;
  background: transparent;
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.4s ease;
}

.product-slide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15), 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Reduced hover effect for non-active slides */
.carousel-slide:not(.active) .product-slide-card:hover {
  transform: translateY(-5px);
}

.product-slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  overflow: hidden;
  border-radius: 15px;
}

.product-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  opacity: 1;
  display: block;
  border-radius: 15px;
}

.product-slide-card:hover .product-slide-image img {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

/* Carousel Navigation - Hidden */
.carousel-nav {
  display: none;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
  pointer-events: all;
  color: var(--primary-blue);
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--light-orange)
  );
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.carousel-btn:hover::before {
  width: 100%;
  height: 100%;
}

.carousel-btn:hover {
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.3),
    0 6px 15px rgba(255, 122, 0, 0.2);
  border-color: var(--primary-orange);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.prev-btn {
  margin-left: -30px;
}

.next-btn {
  margin-right: -30px;
}

/* Carousel Indicators - Modern Design */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  z-index: 10;
  position: relative;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(30, 74, 155, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--light-orange)
  );
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.indicator.active::before {
  width: 100%;
  height: 100%;
}

.indicator.active {
  border-color: var(--primary-orange);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.4), 0 0 40px rgba(255, 122, 0, 0.2);
}

.indicator:hover {
  border-color: var(--primary-blue);
  transform: scale(1.2);
}

.indicator:hover::before {
  width: 60%;
  height: 60%;
  background: var(--primary-blue);
}

/* EPSON Logo Styling for Carousel */
.epson-logo-section {
  text-align: center;
  margin-bottom: 3rem;
}

.epson-logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/* Products CTA */
.products-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Partners Section Styles */
.partners {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--light-orange)
  );
  border-radius: 50%;
  opacity: 0.05;
  animation: float 20s ease-in-out infinite;
}

.partners::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-blue);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.05;
  animation: float 15s ease-in-out infinite reverse;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.partner-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 74, 155, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100px;
  position: relative;
  overflow: hidden;
}

.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 74, 155, 0.15);
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 1);
}

.partner-item img {
  max-width: 90%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(50%) opacity(0.8);
  transition: all 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

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

/* Partners Responsive Design */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
  }

  .partner-item {
    padding: 1rem;
    height: 80px;
  }

  .partner-item img {
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 400px;
  }

  .partner-item {
    padding: 0.8rem;
    height: 70px;
  }

  .partner-item img {
    max-height: 35px;
  }
}

/* Responsive Design - Modern Updates */
@media (max-width: 768px) {
  .products-carousel-container {
    padding: 0;
  }

  .carousel-wrapper {
    padding: 0;
  }

  .products-carousel {
    height: 400px;
  }

  .carousel-slide {
    width: 800px;
  }

  .carousel-slide.active {
    transform: translateX(0) scale(0.9);
  }

  .carousel-slide.prev {
    opacity: 0.4;
    transform: translateX(-55%) scale(0.7);
  }

  .carousel-slide.next {
    opacity: 0.4;
    transform: translateX(55%) scale(0.7);
  }

  .carousel-slide.prev:hover,
  .carousel-slide.next:hover {
    opacity: 0.6;
    transform: translateX(-55%) scale(0.75);
  }

  .carousel-slide.next:hover {
    transform: translateX(55%) scale(0.75);
  }

  .product-slide-card {
    height: 160px;
    border-radius: 12px;
    max-width: 800px;
  }

  .product-slide-image {
    border-radius: 12px;
  }

  .product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 12px;
  }

  .indicator {
    width: 12px;
    height: 12px;
  }

  .carousel-indicators {
    gap: 0.8rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .products-carousel-container {
    padding: 0;
  }

  .carousel-wrapper {
    padding: 0;
  }

  .products-carousel {
    height: 320px;
  }

  .carousel-slide {
    width: 600px;
  }

  .carousel-slide.active {
    transform: translateX(0) scale(0.85);
  }

  .carousel-slide.prev {
    opacity: 0.3;
    transform: translateX(-45%) scale(0.6);
  }

  .carousel-slide.next {
    opacity: 0.3;
    transform: translateX(45%) scale(0.6);
  }

  .carousel-slide.prev:hover,
  .carousel-slide.next:hover {
    opacity: 0.5;
    transform: translateX(-45%) scale(0.65);
  }

  .carousel-slide.next:hover {
    transform: translateX(45%) scale(0.65);
  }

  .product-slide-card {
    height: 125px;
    border-radius: 10px;
    max-width: 600px;
  }

  .product-slide-image {
    border-radius: 10px;
  }

  .product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators {
    gap: 0.6rem;
    margin-top: 1.5rem;
  }
}
