:root {
  --primary: #0a2463;
  --accent: #e8a020;
  --dark: #050d1a;
  --dark2: #0d1f3c;
  --mid: #1c3461;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(10, 36, 99, 0.6);
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition:
    opacity 0.6s,
    visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pl-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.2s ease-in-out infinite alternate;
  text-align: center;
}

@media (min-width: 768px) {
  .pl-logo {
    font-size: 2.5rem;
  }
}

.pl-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.pl-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #1a3a7e);
  border-radius: 99px;
  animation: loadbar 1.8s ease forwards;
}

@keyframes loadbar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes pulse {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(232, 160, 32, 0.6));
  }
}

/* Cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(232, 160, 32, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

@media (min-width: 768px) {
  #navbar {
    padding: 20px 0;
  }
}

#navbar.scrolled {
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 40px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.nav-logo-img {
  width: 60px;
  height: auto;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .nav-logo-img {
    width: 80px;
  }
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 22px;
  }
}

.logo-text span {
  color: var(--accent);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #c06010);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.4);
}

@media (min-width: 768px) {
  .logo-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

.nav-links {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}

.nav-links.open {
  display: flex;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    transform: none;
    width: auto;
    gap: 8px;
  }
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  display: block;
  text-align: center;
}

@media (min-width: 992px) {
  .nav-links a {
    padding: 8px 16px;
  }
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--glass);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #c06010) !important;
  color: #fff !important;
  padding: 12px 20px !important;
  box-shadow: 0 4px 15px rgba(232, 160, 32, 0.3);
}

@media (min-width: 992px) {
  .nav-cta {
    padding: 10px 22px !important;
  }
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 32, 0.5) !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1000;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Sections */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-tag {
    font-size: 0.75rem;
  }
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--accent), #f5b84a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-desc {
    font-size: 1.05rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 60px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c06010);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 160, 32, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #020a1a 0%,
    #0a2463 40%,
    #0d1f3c 70%,
    #050d1a 100%
  );
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 70%
  );
}

@media (min-width: 768px) {
  .hero-grid {
    background-size: 60px 60px;
  }
}

.hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(10, 36, 99, 0.6);
  top: -100px;
  right: -50px;
  animation: floatglow 8s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
  .hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
  }
}

.hero-glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(232, 160, 32, 0.12);
  bottom: -50px;
  left: 10%;
  animation: floatglow 10s ease-in-out infinite alternate-reverse;
}

@media (min-width: 768px) {
  .hero-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
  }
}

@keyframes floatglow {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 140px 0 100px;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 30px;
  height: 2px;
  background: var(--accent);
}

@media (min-width: 768px) {
  .hero-eyebrow-line {
    width: 40px;
  }
}

.hero-eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (min-width: 768px) {
  .hero-eyebrow-text {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.accent-text {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #f5b84a 50%,
    var(--accent) 100%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 0%;
  }
  to {
    background-position: 200%;
  }
}

.hero-desc {
  margin: 20px 0 32px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-desc {
    margin: 24px 0 40px;
    font-size: 1.15rem;
    line-height: 1.7;
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-actions {
    gap: 16px;
  }
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-badges {
    gap: 28px;
    margin-top: 60px;
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .hero-badge {
    gap: 10px;
  }
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .hero-badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.hero-badge-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .hero-badge-text {
    font-size: 0.85rem;
  }
}

.hero-badge-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero-badge-text strong {
    font-size: 1rem;
  }
}

.hero-orb-wrap {
  display: none;
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

@media (min-width: 1200px) {
  .hero-orb-wrap {
    display: block;
  }
}

.hero-orb {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(232, 160, 32, 0.08),
    transparent,
    rgba(10, 36, 99, 0.3),
    transparent
  );
  animation: spinslow 20s linear infinite;
  position: relative;
}

.hero-orb::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(232, 160, 32, 0.15),
    transparent
  );
  animation: spinslow 12s linear infinite reverse;
}

.hero-orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(10, 36, 99, 0.8) 0%,
    rgba(5, 13, 26, 0.95) 70%
  );
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow:
    0 0 60px rgba(232, 160, 32, 0.1),
    inset 0 0 60px rgba(10, 36, 99, 0.5);
}

@keyframes spinslow {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.scroll-ind {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bouncey 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .scroll-ind {
    bottom: 30px;
    gap: 8px;
  }
}

.scroll-ind span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .scroll-ind span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

@media (min-width: 768px) {
  .scroll-mouse {
    width: 24px;
    height: 38px;
    padding-top: 6px;
  }
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 99px;
  animation: swheel 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .scroll-wheel {
    width: 4px;
    height: 8px;
  }
}

@keyframes swheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes bouncey {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Stats */
.stats-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--dark), var(--dark2));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .stats-section {
    padding: 80px 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 30px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: none;
  transition: var(--transition);
  position: relative;
}

@media (min-width: 768px) {
  .stat-item {
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
  }
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.5s;
}

.stat-item:hover::before {
  width: 60%;
}

@media (min-width: 768px) {
  .stat-item:hover::before {
    width: 80%;
  }
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}

/* About intro */
.about-intro {
  padding: 60px 0;
  background: var(--dark2);
}

@media (min-width: 768px) {
  .about-intro {
    padding: 100px 0;
  }
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.ai-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--mid), var(--primary));
  position: relative;
}

.ai-img-ph {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(
    135deg,
    rgba(10, 36, 99, 0.8),
    rgba(26, 58, 126, 0.5)
  );
}

@media (min-width: 768px) {
  .ai-img-ph {
    min-height: 360px;
    font-size: 6rem;
  }
}

.ai-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent), #c06010);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(232, 160, 32, 0.4);
  font-family: var(--font-head);
}

@media (min-width: 768px) {
  .ai-badge {
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
  }
}

.ai-badge .bnum {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

@media (min-width: 768px) {
  .ai-badge .bnum {
    font-size: 2rem;
  }
}

.ai-badge .btxt {
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (min-width: 768px) {
  .ai-badge .btxt {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 12px;
}

@media (min-width: 768px) {
  .feature-item {
    gap: 16px;
  }
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.3rem;
  }
}

.feature-text h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .feature-text h4 {
    font-size: 1rem;
  }
}

.feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .feature-text p {
    font-size: 0.9rem;
  }
}

/* Services preview */
.services-preview {
  padding: 60px 0;
  background: var(--dark);
}

@media (min-width: 768px) {
  .services-preview {
    padding: 100px 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

@media (min-width: 768px) {
  .service-card {
    padding: 40px;
  }
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 160, 32, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 160, 32, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.upcoming {
  border-style: dashed;
}

.stag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .stag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    margin-bottom: 20px;
  }
}

.stag.current {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.stag.upcoming {
  background: rgba(232, 160, 32, 0.1);
  color: var(--accent);
  border: 1px solid rgba(232, 160, 32, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

@media (min-width: 768px) {
  .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.scard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .scard-arrow {
    gap: 8px;
    margin-top: 24px;
    font-size: 0.9rem;
  }
}

.service-card:hover .scard-arrow {
  gap: 12px;
}

/* CTA */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), var(--dark2));
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 100px 0;
  }
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(232, 160, 32, 0.08) 0%,
    transparent 60%
  );
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-actions {
    gap: 16px;
  }
}

/* Footer */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding: 50px 0 40px;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 80px 0 60px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-social {
    margin-top: 24px;
  }
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

@media (min-width: 768px) {
  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .footer-col h5 {
    margin-bottom: 20px;
  }
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .footer-col ul {
    gap: 10px;
  }
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer-col ul a {
    font-size: 0.9rem;
  }
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer-bottom p {
    font-size: 0.85rem;
  }
}

.footer-bl {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bl {
    gap: 20px;
  }
}

.footer-bl a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .footer-bl a {
    font-size: 0.85rem;
  }
}

.footer-bl a:hover {
  color: var(--accent);
}

/* AOS */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].anim {
  opacity: 1;
  transform: none;
}

/* Page nav */
.page-nav {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  gap: 6px;
  background: rgba(5, 13, 26, 0.9);
  backdrop-filter: blur(20px);
  padding: 8px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .page-nav {
    bottom: 24px;
    gap: 8px;
    padding: 10px 16px;
  }
}

.pnav-btn {
  padding: 6px 12px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .pnav-btn {
    padding: 7px 16px;
    font-size: 0.8rem;
  }
}

.pnav-btn:hover,
.pnav-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 10px rgba(232, 160, 32, 0.4);
}

/* Page sections */
.page-section {
  display: block;
}

/* Back to top */
#btt {
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 500;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c06010);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  #btt {
    bottom: 80px;
    right: 30px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* Page Hero */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #020a1a, #0a2463, #050d1a);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 160px 0 80px;
  }
}

.page-hero-grid-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .page-hero-grid-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .breadcrumb {
    gap: 8px;
    margin-bottom: 20px;
  }
}

.breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .breadcrumb span {
    font-size: 0.85rem;
  }
}

.breadcrumb .sep {
  color: var(--accent);
}

.breadcrumb .cur {
  color: var(--accent);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero > div > div > p,
.page-hero p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-hero > div > div > p,
  .page-hero p {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

.hgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

@media (min-width: 768px) {
  .hgrid {
    background-size: 60px 60px;
  }
}

/* MV */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .mv-card {
    padding: 48px;
  }
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.3);
}

.mv-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .mv-card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
  }
}

.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

@media (min-width: 768px) {
  .mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}

.mv-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .mv-card p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    #1a3a7e,
    transparent
  );
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.tl-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  flex-direction: row;
}

@media (min-width: 768px) {
  .tl-item {
    gap: 40px;
    margin-bottom: 60px;
  }

  .tl-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .tl-item:nth-child(even) .tl-content {
    text-align: right;
  }
}

.tl-dot {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--dark2);
  box-shadow: 0 0 20px rgba(232, 160, 32, 0.5);
  z-index: 1;
}

@media (min-width: 768px) {
  .tl-dot {
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
  }
}

.tl-content {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  margin-left: 40px;
}

@media (min-width: 768px) {
  .tl-content {
    padding: 28px;
    max-width: 380px;
    margin-left: 0;
  }
}

.tl-content:hover {
  border-color: rgba(232, 160, 32, 0.3);
  transform: scale(1.02);
}

.tl-year {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .tl-year {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
}

.tl-content h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .tl-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
}

.tl-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .tl-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.tl-sp {
  display: none;
}

@media (min-width: 768px) {
  .tl-sp {
    display: block;
    flex: 1;
  }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 160, 32, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--mid), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .team-img {
    font-size: 4rem;
  }
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.9), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
  gap: 10px;
}

@media (min-width: 768px) {
  .team-overlay {
    padding-bottom: 20px;
    gap: 12px;
  }
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-soc {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .team-soc {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

.team-soc:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.team-info {
  padding: 20px;
}

@media (min-width: 768px) {
  .team-info {
    padding: 24px;
  }
}

.team-info h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .team-info h4 {
    font-size: 1.1rem;
  }
}

.team-info .role {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .team-info .role {
    font-size: 0.85rem;
  }
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.value-card {
  padding: 25px;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
  .value-card {
    padding: 36px;
  }
}

.value-card:hover {
  transform: translateY(-6px);
  background: rgba(232, 160, 32, 0.05);
  border-color: rgba(232, 160, 32, 0.3);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
}

.value-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Services page */
.sfc {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.sfc:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(232, 160, 32, 0.4);
}

.sfh {
  padding: 30px;
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .sfh {
    padding: 48px;
    min-height: 200px;
  }
}

.sfe {
  font-size: 3rem;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.3;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .sfe {
    font-size: 5rem;
    top: 30px;
    right: 30px;
  }
}

.sfc:hover .sfe {
  opacity: 0.8;
  transform: scale(1.2) rotate(-5deg);
}

.sft {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .sft {
    font-size: 2rem;
  }
}

.sfb {
  padding: 20px 30px 30px;
}

@media (min-width: 768px) {
  .sfb {
    padding: 32px 48px 48px;
  }
}

.sfb p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .sfb p {
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1rem;
  }
}

.sf-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .sf-feats {
    gap: 12px;
  }
}

.sf-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .sf-feat {
    gap: 12px;
    font-size: 0.9rem;
  }
}

.sf-feat::before {
  content: "✓";
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 50%;
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .sf-feat::before {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 0.7rem;
  }
}

.upcbanner {
  background: linear-gradient(
    135deg,
    rgba(232, 160, 32, 0.08),
    rgba(10, 36, 99, 0.4)
  );
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

@media (min-width: 640px) {
  .upcbanner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 40px;
    text-align: left;
  }
}

.ubico {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .ubico {
    font-size: 3rem;
  }
}

.ubtxt h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .ubtxt h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
}

.ubtxt p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .ubtxt p {
    font-size: 0.95rem;
  }
}

.pb-wrap {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .pb-wrap {
    margin-top: 16px;
  }
}

.pb-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .pb-lbl {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
}

.pb {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pb {
    height: 6px;
  }
}

.pbf {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f5b84a);
  border-radius: 99px;
  width: 0;
  transition: width 1.5s ease;
}

/* Products Page Styles */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 160, 32, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--mid), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .product-img {
    height: 350px;
  }
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img-placeholder {
  font-size: 3rem;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@media (min-width: 768px) {
  .product-img-placeholder {
    font-size: 5rem;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.product-info {
  padding: 20px;
}

@media (min-width: 768px) {
  .product-info {
    padding: 24px;
  }
}

.product-info h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

.product-info .category {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
}

@media (min-width: 768px) {
  .product-info .category {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
}

.product-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .product-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .product-price {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .product-actions {
    gap: 12px;
  }
}

.product-actions .btn-small {
  padding: 6px 15px;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .product-actions .btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

.btn-small {
  padding: 6px 15px;
  font-size: 0.8rem;
  border-radius: 30px;
}

@media (min-width: 768px) {
  .btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Filter Buttons */
.gal-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .gal-filters {
    gap: 15px;
    margin-bottom: 40px;
  }
}

.filter-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .filter-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

.filter-btn:hover {
  background: rgba(232, 160, 32, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 1200px;
  width: 95%;
  max-height: 95vh;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow-y: auto;
  animation: slideUp 0.4s ease;
}

@media (min-width: 768px) {
  .lightbox-content {
    width: 90%;
    max-height: 90vh;
    overflow-y: hidden;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

.lightbox-close:hover {
  background: rgba(232, 160, 32, 0.8);
  transform: rotate(90deg);
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

@media (min-width: 992px) {
  .lightbox-body {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
  }
}

.lightbox-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mid), var(--primary));
}

@media (min-width: 768px) {
  .lightbox-image {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .lightbox-image {
    height: 500px;
  }
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-details {
  padding: 10px 0;
}

@media (min-width: 768px) {
  .lightbox-details {
    padding: 20px 0;
  }
}

.lightbox-details h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

@media (min-width: 768px) {
  .lightbox-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

.lightbox-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .lightbox-price {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.lightbox-details p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .lightbox-details p {
    margin-bottom: 25px;
    font-size: 1rem;
  }
}

.lightbox-features {
  margin: 20px 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .lightbox-features {
    margin: 25px 0;
    padding-top: 20px;
  }
}

.lightbox-features h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent);
}

@media (min-width: 768px) {
  .lightbox-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}

.lightbox-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

@media (min-width: 768px) {
  .lightbox-features ul {
    margin: 0 0 20px 0;
  }
}

.lightbox-features li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-left: 22px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .lightbox-features li {
    padding: 8px 0;
    padding-left: 25px;
    font-size: 0.9rem;
  }
}

.lightbox-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.age-group {
  padding: 10px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin-top: 15px;
}

@media (min-width: 768px) {
  .age-group {
    padding: 12px;
    margin-top: 20px;
  }
}

.lightbox-actions {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .lightbox-actions {
    margin-top: 30px;
  }
}

.lightbox-actions .btn-primary {
  padding: 10px 25px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .lightbox-actions .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* No Products Message */
.no-products {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .no-products {
    padding: 60px;
    font-size: 1.1rem;
  }
}

/* Animation for product cards */
.product-card {
  animation: fadeInUp 0.6s ease backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for cards */
.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
  }
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d48f1a;
}

/* Lightbox */
#lb {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

#lb.active {
  opacity: 1;
  visibility: visible;
}

.lb-c {
  max-width: 900px;
  width: 95%;
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .lb-c {
    width: 90%;
  }
}

#lb.active .lb-c {
  transform: scale(1);
}

.lb-body {
  height: 300px;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lb-body {
    height: 500px;
  }
}

.lb-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lb-foot {
  padding: 15px 20px;
}

@media (min-width: 768px) {
  .lb-foot {
    padding: 20px 28px;
  }
}

.lb-foot h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .lb-foot h3 {
    font-size: 1.2rem;
  }
}

.lb-foot p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .lb-foot p {
    font-size: 0.9rem;
  }
}

.lb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .lb-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

.lb-close:hover {
  background: rgba(255, 0, 0, 0.5);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
}

.ci h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .ci h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.ci p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .ci p {
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
  }
}

.citems {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .citems {
    gap: 24px;
  }
}

.citem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .citem {
    gap: 16px;
  }
}

.citem-ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .citem-ico {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.2rem;
  }
}

.citem-txt h5 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .citem-txt h5 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
}

.citem-txt p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .citem-txt p {
    font-size: 0.95rem;
  }
}

.map-cont {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 200px;
  background: var(--dark2);
}

@media (min-width: 768px) {
  .map-cont {
    margin-top: 40px;
    height: 220px;
  }
}

.map-cont iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.5);
}

.cfw {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 30px;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .cfw {
    padding: 48px;
  }
}

.cfw h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .cfw h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
}

.fg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 640px) {
  .fg {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.fgrp {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fgrp.full {
  grid-column: 1/-1;
}

.fgrp label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .fgrp label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
}

.fgrp input,
.fgrp textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

@media (min-width: 768px) {
  .fgrp input,
  .fgrp textarea {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

.fgrp input:focus,
.fgrp textarea:focus {
  border-color: var(--accent);
  background: rgba(232, 160, 32, 0.05);
  box-shadow: 0 0 0 4px rgba(232, 160, 32, 0.08);
}

.fgrp textarea {
  min-height: 120px;
  resize: vertical;
}

@media (min-width: 768px) {
  .fgrp textarea {
    min-height: 140px;
  }
}

.fgrp .ferr {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}

@media (min-width: 768px) {
  .fgrp .ferr {
    font-size: 0.8rem;
  }
}

.fgrp.err input,
.fgrp.err textarea {
  border-color: #e74c3c;
}

.fgrp.err .ferr {
  display: block;
}

.fsuccess {
  display: none;
  padding: 12px 15px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 10px;
  color: #2ecc71;
  font-size: 0.85rem;
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .fsuccess {
    padding: 16px 20px;
    font-size: 0.95rem;
    margin-top: 16px;
  }
}

.fsuccess.vis {
  display: block;
}

/* Mobile menu fixes */
@media (max-width: 991px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-links {
    overflow-y: auto;
  }
}

/* Fix for AOS on mobile */
@media (max-width: 768px) {
  [data-aos] {
    opacity: 1;
    transform: none;
  }
}

.logo-img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

@media (min-width: 768px) {
  .logo-img {
    width: 80px;
  }
}

.pl-logo {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

/* ============================================ */
/* SERVICE PAGE MOBILE RESPONSIVENESS - UPDATED */
/* ============================================ */

@media (max-width: 768px) {
  /* Make service cards stack vertically on mobile */
  .services-full-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }

  .services-full-grid > div {
    width: 100% !important;
  }

  /* Service card adjustments */
  .sfc {
    margin: 0 !important;
  }

  .sfh {
    padding: 20px !important;
    min-height: 120px !important;
  }

  .sfe {
    font-size: 2rem !important;
    top: 15px !important;
    right: 15px !important;
  }

  .sft {
    font-size: 1.2rem !important;
  }

  .stag.current, 
  .stag.upcoming {
    font-size: 0.6rem !important;
    padding: 3px 10px !important;
    margin-bottom: 8px !important;
  }

  .sfb {
    padding: 20px !important;
  }

  .sfb p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  .sf-feats {
    gap: 8px !important;
  }

  .sf-feat {
    font-size: 0.8rem !important;
    gap: 8px !important;
  }

  .sf-feat::before {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    font-size: 0.55rem !important;
  }

  .sfb .btn {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
  }

  /* Upcoming banners */
  .upcbanner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 25px 20px !important;
    margin-bottom: 20px !important;
  }

  .ubico {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }

  .ubtxt {
    width: 100% !important;
  }

  .ubtxt h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  .ubtxt p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  .pb-wrap {
    margin-top: 16px !important;
  }

  .pb-lbl {
    font-size: 0.7rem !important;
  }

  .pb {
    height: 4px !important;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 30px !important;
  }

  .section-header .section-tag {
    font-size: 0.65rem !important;
    padding: 4px 12px !important;
  }

  .section-header .section-title {
    font-size: 1.6rem !important;
  }
}

/* For small phones (max-width: 480px) */
@media (max-width: 480px) {
  .sfh {
    padding: 16px !important;
  }

  .sft {
    font-size: 1rem !important;
  }

  .sfe {
    font-size: 1.6rem !important;
    top: 12px !important;
    right: 12px !important;
  }

  .sfb {
    padding: 16px !important;
  }

  .sfb p {
    font-size: 0.8rem !important;
  }

  .sf-feat {
    font-size: 0.75rem !important;
  }

  .ubtxt h3 {
    font-size: 0.95rem !important;
  }

  .ubtxt p {
    font-size: 0.8rem !important;
  }

  .upcbanner {
    padding: 20px 15px !important;
  }
}

/* For tablets (769px - 1024px) - optional grid improvement */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-full-grid {
    gap: 20px !important;
  }

  .sfh {
    padding: 30px !important;
  }

  .sft {
    font-size: 1.3rem !important;
  }

  .sfb {
    padding: 25px !important;
  }

  .sfb p {
    font-size: 0.9rem !important;
  }

  .sf-feat {
    font-size: 0.85rem !important;
  }
}