/* KTP Website - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Richer, more vibrant palette */
  --ktp-blue: #0f1c2e;
  /* Deeper midnight blue */
  --ktp-blue-light: #1a2a3a;
  --ktp-gold: #e2ab1b;
  --ktp-gold-light: #f1c40f;
  --ktp-dark: #0a0e14;
  --ktp-gray: #f2f5f9;
  --ktp-white: #ffffff;

  /* Advanced Shadows */
  --shadow-ktp: 0 10px 40px -10px rgba(15, 28, 46, 0.08), 0 4px 6px -2px rgba(15, 28, 46, 0.04);
  --shadow-ktp-lg: 0 30px 60px -12px rgba(15, 28, 46, 0.12), 0 18px 36px -18px rgba(15, 28, 46, 0.08);
  --shadow-gold: 0 15px 45px -10px rgba(226, 171, 27, 0.35);

  /* Transitions */
  --ease-ktp: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-ktp: all 0.5s var(--ease-ktp);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ktp-dark);
  background-color: var(--ktp-gray);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  z-index: 9999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Glassmorphism Utilities */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.glass-dark {
  background: rgba(15, 28, 46, 0.8);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.bg-soft {
  background-color: var(--ktp-gray);
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
}

.bg-dark {
  background-color: var(--ktp-blue);
  color: white;
}

.section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Top Bar */
.top-bar {
  background-color: var(--ktp-blue);
  color: white;
  padding: 0.5rem 0;
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--ktp-gold);
}

.section-header-wrap {
  margin-bottom: 3rem;
}

.btn-mg-top {
  margin-top: 2rem;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-ktp);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -10px rgba(15, 28, 46, 0.1);
  height: 4.5rem;
}

.navbar.scrolled .navbar-content {
  height: 4.5rem;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo-img {
  height: auto;
  width: auto;
  max-height: 3.5rem;
  display: block;
  transition: transform 0.4s var(--ease-ktp);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-img {
    max-height: 2.75rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-height: 2.25rem;
  }
}

@media (max-width: 640px) {
  .logo-text h1 {
    font-size: 1.125rem;
  }

  .logo-text p {
    font-size: 0.65rem;
  }
}

/* Nav Links */
.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

/* Hide bar button on mobile/tablet */
@media (max-width: 1023px) {
  .navbar .navbar-content > .btn {
    display: none;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ktp-dark);
  transition: color 0.3s;
}

.nav-link:hover {
  color: #27bff5;
}

.nav-link.active {
  color: var(--ktp-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--ktp-gold);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition-ktp);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--ktp-blue);
  color: white;
}

.btn-primary:hover {
  background-color: var(--ktp-blue-light);
  box-shadow: var(--shadow-ktp-lg);
}

.btn-gold {
  background-color: var(--ktp-gold);
  color: white;
}

.btn-gold:hover {
  background-color: #c49415;
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  background-color: var(--ktp-gray);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  background-color: var(--ktp-gray);
}

.mobile-nav-link.active {
  background-color: var(--ktp-blue);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ktp-blue);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  animation: none;
  /* Disabling CSS kenburns to avoid conflict with JS GSAP if any, or keep it if preferred. Let's keep it simple for now. */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 36, 56, 0.85) 0%, rgba(15, 36, 56, 0.4) 50%, rgba(15, 36, 56, 0.8) 100%);
  z-index: 3;
}

/* Minimalist Hero Layout */
.hero-minimal-inner {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: left;
  min-height: 80vh;
  padding: 0rem 5rem 5rem;
  width: 100%;

}

.hero-minimal-content {
  max-width: 100%;
}

.hero-minimal-badge {
  display: inline-block;
  color: var(--ktp-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-minimal-title {
  color: white;
  font-size: clamp(2.25rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-minimal-title span {
  color: white;
}

.hero-minimal-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 650px;
  margin-left: 0;
  margin-right: 0;
}

.hero-minimal-actions {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-minimal-stats {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.minimal-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.minimal-stat .stat-val {
  color: var(--ktp-gold);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.minimal-stat span:not(.stat-val) {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .hero-minimal-inner {
    padding: 4rem 1.25rem 2rem;
    text-align: left;
    justify-content: flex-start;
    min-height: 70vh;
  }

  .hero-minimal-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-minimal-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-minimal-actions {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .hero-minimal-actions .btn {
    width: 100%;
  }

  .hero-minimal-stats {
    gap: 2rem;
    flex-direction: row;
    align-items: center;
    padding-top: 2rem;
  }

  .minimal-stat .stat-val {
    font-size: 2rem;
  }
}

.hub-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.hub-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-unit {
  font-size: 1.5rem;
  color: var(--lux-gold);
  font-weight: 800;
}

.stat-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

.hub-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.stat-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marker-dot {
  width: 8px;
  height: 8px;
  background: var(--lux-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lux-gold);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.marker-text {
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.floating-tag {
  position: absolute;
  padding: 1.5rem 2rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

.tag-text {
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.tag-1 {
  top: -10%;
  right: 10%;
  transform: rotate(-5deg);
}

.tag-2 {
  bottom: -5%;
  left: 0;
  transform: rotate(3deg);
}

@media (max-width: 1024px) {
  .hero-luxury-hub {
    min-height: auto;
  }

  .floating-tag {
    position: static;
    margin-top: 1rem;
  }
}

.exp-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .hero-editorial-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .exp-block {
    flex: 1;
    min-width: 180px;
    padding: 1.75rem;
  }
}

@media (max-width: 640px) {
  .exp-block {
    min-width: 100%;
  }
}

/* Section Styles */
.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--ktp-gold);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ktp-blue);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.15rem;
  }
}

/* Section left-accent heading style */
.section-title-left {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ktp-blue);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  padding-left: 1rem;
  border-left: 4px solid var(--ktp-gold);
}

@media (min-width: 640px) {
  .section-title-left {
    font-size: 2rem;
    padding-left: 1.25rem;
  }
}

/* About Section Layout Redesign */
.about-premium-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-premium-layout {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-premium-images {
  position: relative;
  width: 100%;
  height: 500px;
}

.about-premium-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 28, 46, 0.15);
}

.about-premium-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-premium-images:hover .about-premium-img-main img {
  transform: scale(1.05);
}

.about-premium-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 65%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 28, 46, 0.2);
  border: 10px solid var(--ktp-gray);
  z-index: 2;
}

.about-premium-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-premium-images:hover .about-premium-img-sub img {
  transform: scale(1.05);
}

.about-premium-exp-badge {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(226, 171, 27, 0.15);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-left: 5px solid var(--ktp-gold);
  z-index: 10;
  transition: transform 0.3s;
}

.about-premium-exp-badge:hover {
  transform: translateY(-50%) translateX(-5px);
}

.about-premium-exp-badge .exp-number {
  color: var(--ktp-blue);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-premium-exp-badge .exp-text {
  color: rgba(26, 32, 44, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

@media(max-width: 768px) {
  .about-premium-images {
    height: 380px;
    margin-bottom: 3rem;
  }

  .about-premium-img-main {
    width: 85%;
    height: 80%;
  }

  .about-premium-img-sub {
    width: 65%;
    height: 60%;
  }

  .about-premium-exp-badge {
    left: 50%;
    top: auto;
    bottom: -15%;
    transform: translateX(-50%);
    width: max-content;
  }

  .about-premium-exp-badge:hover {
    transform: translateX(-50%) translateY(-5px);
  }
}

.about-premium-content .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.about-premium-content .about-para {
  color: rgba(26, 32, 44, 0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Why Choose Us — numbered layout */
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
  }
}

.why-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: start;
  gap: 0;
  background: var(--ktp-gray);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(26, 60, 90, 0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(26, 60, 90, 0.1);
  transform: translateX(4px);
}

.why-number {
  background: var(--ktp-blue);
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.5rem;
  font-weight: 800;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.6rem;
  letter-spacing: 0.05em;
  min-height: 100%;
}

.why-card-body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.why-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(26, 60, 90, 0.08);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ktp-blue);
  margin-top: 0.15rem;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ktp-blue);
  margin-bottom: 0.3rem;
}

.why-text {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.65);
  line-height: 1.6;
}

/* Home Services Redesign */
.home-services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media(min-width: 768px) {
  .home-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 480px;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  transform: translateZ(0);
  /* Force hardware acceleration */
  box-shadow: 0 10px 30px rgba(15, 28, 46, 0.1);
}

.hsc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--ktp-blue);
}

.hsc-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-service-card:hover .hsc-bg img {
  transform: scale(1.1);
}

.hsc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 28, 46, 0.95) 0%, rgba(15, 28, 46, 0.5) 50%, rgba(15, 28, 46, 0.1) 100%);
  transition: background 0.5s ease;
}

.home-service-card:hover .hsc-overlay {
  background: linear-gradient(to top, rgba(15, 28, 46, 0.98) 0%, rgba(15, 28, 46, 0.7) 50%, rgba(15, 28, 46, 0.2) 100%);
}

.hsc-content {
  position: relative;
  z-index: 10;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.hsc-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ktp-gold);
  margin-bottom: auto;
  /* Pushes text to the bottom */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s, border-color 0.3s;
}

.home-service-card:hover .hsc-icon {
  transform: translateY(-8px);
  background: var(--ktp-gold);
  border-color: var(--ktp-gold);
  color: white;
  box-shadow: 0 10px 20px rgba(196, 148, 21, 0.3);
}

.hsc-text {
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-service-card:hover .hsc-text {
  transform: translateY(0);
}

.hsc-subtitle {
  color: var(--ktp-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.home-service-card:hover .hsc-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hsc-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.3s;
}

@media(min-width: 1024px) {
  .hsc-title {
    font-size: 1.45rem;
  }
}

.hsc-arrow {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ktp-blue);
  transform: translate(20px, 20px) scale(0.5);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-service-card:hover .hsc-arrow {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-ktp);
  transition: var(--transition-ktp);
  border: 1px solid rgba(15, 45, 71, 0.05);
}

.card:hover {
  box-shadow: var(--shadow-ktp-lg);
  transform: translateY(-8px);
  border-color: rgba(226, 171, 27, 0.2);
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--ktp-blue);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-ktp);
}

.card:hover .feature-icon {
  transform: translateY(-5px) rotate(5deg);
  background-color: var(--ktp-blue-light);
  box-shadow: var(--shadow-ktp-lg);
}

.card-title-lg {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ktp-blue);
}

.text-muted {
  color: rgba(10, 14, 20, 0.7);
}

.card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--ktp-gold);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--ktp-blue);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--ktp-gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-text {
  color: rgba(26, 32, 44, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ktp-gold);
  font-weight: 500;
  font-size: 0.875rem;
  transition: gap 0.3s;
}

.card-link:hover {
  gap: 0.75rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About / index stats section - needs overflow visible for stats overlay */
.about-stats-wrap {
  position: relative;
  padding-bottom: 3.5rem;
}

/* Feature Cards */
.feature-card {
  background-color: var(--ktp-gray);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  background-color: var(--ktp-blue);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--ktp-blue);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background-color: var(--ktp-gold);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.125rem;
  color: var(--ktp-blue);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.feature-card:hover .feature-title {
  color: white;
}

.feature-text {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.7);
  transition: color 0.3s;
}

.feature-card:hover .feature-text {
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-image {
  position: relative;
  padding-bottom: 3rem;
}

.about-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-ktp-lg);
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .about-image img {
    height: 460px;
  }
}

.experience-badge {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  background-color: var(--ktp-gold);
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.experience-badge .years {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.stats-overlay {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-ktp);
  padding: 1rem 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ktp-blue);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(26, 32, 44, 0.6);
  margin-top: 0.25rem;
}

/* Check List */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .check-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ktp-blue);
  flex-shrink: 0;
}

/* Quote Card */
.quote-card {
  position: relative;
  background-color: var(--ktp-gray);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-ktp);
}

.quote-decoration {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}

.quote-decoration-1 {
  top: -1rem;
  left: -1rem;
  background-color: rgba(212, 160, 23, 0.2);
}

.quote-decoration-2 {
  bottom: -1rem;
  right: -1rem;
  background-color: rgba(26, 60, 90, 0.1);
}

.quote-icon {
  width: 3rem;
  height: 3rem;
  color: var(--ktp-gold);
  margin-bottom: 1rem;
}

.quote-text {
  color: rgba(26, 32, 44, 0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 4rem;
  height: 4rem;
  background-color: var(--ktp-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ktp-blue);
  font-size: 1.125rem;
}

.author-title {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.6);
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline-line {
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
  }
}

.timeline-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.timeline-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-year {
  width: 3rem;
  height: 3rem;
  background-color: var(--ktp-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.timeline-title {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* Certification Card */
.cert-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-ktp);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cert-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(26, 60, 90, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ktp-blue);
}

.cert-text {
  font-weight: 500;
  color: var(--ktp-blue);
  font-size: 0.875rem;
}

/* Premium Clients Marquee */
.marquee-section {
  position: relative;
  background-color: var(--ktp-gray);
  padding: 6rem 0;
  overflow: hidden;
}

/* Faded edges for seamless loop illusion */
.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--ktp-gray) 0%, transparent 100%);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--ktp-gray) 0%, transparent 100%);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.marquee {
  display: flex;
  gap: 4rem;
  padding: 1rem 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
  width: 160px;
}

.marquee-item:hover {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.marquee-item span {
  color: var(--ktp-blue);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Blog Card */
.blog-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-ktp);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-ktp-lg);
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-ktp);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--ktp-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(26, 32, 44, 0.6);
  margin-bottom: 0.75rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.125rem;
  color: var(--ktp-blue);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-tag {
  background-color: var(--ktp-gray);
  color: rgba(26, 32, 44, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Premium Boxed CTA Section */
.cta-section {
  padding: 8rem 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(15, 36, 56, 0.95) 0%, rgba(10, 27, 43, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 27, 43, 0.4);
}

@media (max-width: 768px) {
  .cta-box {
    padding: 3rem 1.5rem;
  }
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-decoration-1 {
  top: 0;
  right: 0;
  width: 18rem;
  height: 18rem;
  background-color: rgba(226, 171, 27, 0.15);
  /* Gold tone matching first style */
  transform: translate(30%, -30%);
  filter: blur(40px);
}

.cta-decoration-2 {
  bottom: 0;
  left: 0;
  width: 14rem;
  height: 14rem;
  background-color: rgba(255, 255, 255, 0.08);
  /* White tone matching first style */
  transform: translate(-30%, 30%);
  filter: blur(30px);
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.cta-text {
  flex: 1;
  max-width: 650px;
}

.cta-text h2 {
  color: white;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .cta-text h2 {
    font-size: 2.75rem;
  }
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-text h2 {
    font-size: 2rem;
  }
}

/* Premium Footer Redesign */
.footer {
  background-color: #0b1a29;
  /* Deep, luxurious navy */
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b1a29 0%, var(--ktp-gold) 50%, #0b1a29 100%);
}

.footer::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-main {
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 2;
}

.footer-grid-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-simple {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3.5rem 0 2.5rem;
  }
  .footer-grid-simple {
    gap: 2.5rem;
  }
  .footer-logo {
    margin-bottom: 1.5rem;
  }
  .footer-logo .logo-img {
    max-height: 3rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
}

.footer-logo .logo-img {
  max-height: 4rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: var(--ktp-gold);
  color: white;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ktp-gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footer-links a:hover {
  color: var(--ktp-gold);
  padding-left: 0.4rem;
}

.footer-contact-simple {
  list-style: none;
}

.footer-contact-simple li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contact-simple svg {
  flex-shrink: 0;
  color: var(--ktp-gold);
  margin-top: 0.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--ktp-gold);
}

/* Page Header */
.page-header {
  position: relative;
  background: linear-gradient(rgba(15, 36, 56, 0.8), rgba(15, 36, 56, 0.8)), url('../images/survey-equipment.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  text-align: center;
}

.page-header-label {
  color: var(--ktp-gold);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.page-header-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header-title {
    font-size: 3.5rem;
  }
}

.page-header-desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Info Cards */
.info-card {
  background-color: var(--ktp-gray);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.info-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--ktp-blue);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--ktp-gold);
}

.info-card-title {
  font-size: 1.125rem;
  color: var(--ktp-blue);
  margin-bottom: 0.75rem;
}

.info-card-text {
  color: rgba(26, 32, 44, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.info-card-text p {
  margin-bottom: 0.25rem;
}

/* Service Card Large */
.service-card-lg {
  background-color: var(--ktp-gray);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-ktp);
  transition: all 0.3s;
}

.service-card-lg:hover {
  box-shadow: var(--shadow-ktp-lg);
  transform: translateY(-5px);
}

.service-card-lg-inner {
  display: grid;
}

@media (min-width: 768px) {
  .service-card-lg-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card-image {
  position: relative;
  height: 16rem;
}

@media (min-width: 768px) {
  .service-card-image {
    height: auto;
  }
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 60, 90, 0.6), transparent);
}

.service-card-icon-lg {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--ktp-gold);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon-lg svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--ktp-blue);
}

.service-card-dept {
  color: var(--ktp-gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.service-card-type {
  background-color: rgba(26, 60, 90, 0.1);
  color: var(--ktp-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.service-card-text {
  color: rgba(26, 32, 44, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-card-features {
  margin-bottom: 1rem;
}

.service-card-features h4 {
  font-size: 0.875rem;
  color: var(--ktp-blue);
  margin-bottom: 0.5rem;
}

.service-card-features ul {
  list-style: none;
}

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.7);
  margin-bottom: 0.25rem;
}

.service-card-features svg {
  width: 1rem;
  height: 1rem;
  color: var(--ktp-gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Process Steps */
.process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--ktp-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ktp-gold);
}

.process-step-title {
  font-size: 1.125rem;
  color: var(--ktp-blue);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.7);
}

/* Gallery */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  background-color: white;
  color: var(--ktp-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  background-color: rgba(26, 60, 90, 0.1);
}

.filter-btn.active {
  background-color: var(--ktp-blue);
  color: white;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 60, 90, 0.9), rgba(26, 60, 90, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  color: var(--ktp-gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.gallery-title {
  color: white;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.gallery-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-zoom svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.lightbox-content {
  max-width: 80rem;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: 0.5rem;
}

.lightbox-category {
  color: var(--ktp-gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}

.lightbox-title {
  color: white;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.lightbox-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Client Cards */
.client-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-ktp);
  transition: all 0.3s;
}

.client-card:hover {
  box-shadow: var(--shadow-ktp-lg);
  transform: translateY(-5px);
}

.client-logo {
  width: 5rem;
  height: 5rem;
  background-color: rgba(26, 60, 90, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.client-card:hover .client-logo {
  background-color: var(--ktp-blue);
}

.client-logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ktp-blue);
  transition: color 0.3s;
}

.client-card:hover .client-logo span {
  color: var(--ktp-gold);
}

.client-name {
  font-size: 1rem;
  color: var(--ktp-blue);
  margin-bottom: 0.25rem;
}

.client-category {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.6);
}

/* Testimonial Cards */
.testimonial-card {
  background-color: var(--ktp-gray);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-ktp);
  transition: all 0.3s;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-ktp-lg);
  transform: translateY(-5px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ktp-gold);
  fill: var(--ktp-gold);
}

.testimonial-quote {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(26, 60, 90, 0.2);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(26, 32, 44, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--ktp-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ktp-blue);
}

.testimonial-position {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.6);
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--ktp-gold);
}

/* Industry Tags */
.industry-tag {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: background-color 0.3s;
}

.industry-tag:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.industry-tag svg {
  width: 2rem;
  height: 2rem;
  color: var(--ktp-gold);
  margin: 0 auto 0.75rem;
}

.industry-tag span {
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ktp-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ktp-blue);
  box-shadow: 0 0 0 3px rgba(26, 60, 90, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* File Upload */
.file-upload {
  border: 2px dashed #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.file-upload input {
  display: none;
}

.file-upload label {
  color: var(--ktp-blue);
  cursor: pointer;
  transition: color 0.3s;
}

.file-upload label:hover {
  color: var(--ktp-gold);
}

.file-upload p {
  font-size: 0.75rem;
  color: rgba(26, 32, 44, 0.5);
  margin-top: 0.5rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background-color: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #16a34a;
}

.success-title {
  font-size: 1.5rem;
  color: var(--ktp-blue);
  margin-bottom: 0.5rem;
}

.success-text {
  color: rgba(26, 32, 44, 0.7);
}

/* FAQ */
.faq-item {
  background-color: var(--ktp-gray);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1rem;
  color: var(--ktp-blue);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: rgba(26, 32, 44, 0.7);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll,
.card,
.brochure-card,
.why-card,
.check-list li {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 1.2s var(--ease-ktp), transform 1.2s var(--ease-ktp);
  will-change: transform, opacity;
}

.animate-on-scroll.animated,
.card.animated,
.brochure-card.animated,
.why-card.animated,
.check-list li.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =============================================
   Brochure Section
   ============================================= */
.brochure-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.brochure-section .section-label {
  color: var(--ktp-gold);
}

.brochure-section .section-title {
  color: var(--ktp-blue);
}

.brochure-section .section-description {
  color: rgba(26, 32, 44, 0.65);
}

/* Brochure Card */
.brochure-card {
  background: white;
  border: 1px solid rgba(26, 60, 90, 0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(26, 60, 90, 0.06);
}

.brochure-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 60, 90, 0.12);
}

.brochure-icon-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: rgba(26, 60, 90, 0.06);
  border: 1px solid rgba(26, 60, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ktp-blue);
  flex-shrink: 0;
  transition: background 0.3s;
}

.brochure-icon-wrap svg {
  width: 3rem;
  height: 3rem;
}

.brochure-card:hover .brochure-icon-wrap {
  background: rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.3);
  color: var(--ktp-gold);
}

.brochure-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ktp-gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 0.375rem;
  width: fit-content;
}

.brochure-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ktp-blue);
  line-height: 1.3;
}

.brochure-desc {
  font-size: 0.875rem;
  color: rgba(26, 32, 44, 0.6);
  line-height: 1.65;
  flex: 1;
}

.brochure-btn {
  background-color: var(--ktp-blue);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  transition: all 0.3s;
  margin-top: auto;
  text-decoration: none;
}

.brochure-btn:hover {
  background-color: var(--ktp-gold);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
  transform: translateY(-1px);
}

/* GSAP Reveal Classes */
.gsap-reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.gsap-reveal-up {
  transform: translateY(40px);
}

.gsap-reveal-left {
  transform: translateX(-40px);
}

.gsap-reveal-right {
  transform: translateX(40px);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--ktp-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ktp-blue-light);
}

/* Selection */
::selection {
  background-color: var(--ktp-gold);
  color: white;
}