:root {
  --ye-primary: #1258ca;
  --ye-accent: #ff6600;
  --ye-dark: #0a1628;
  --ye-dark-2: #111d33;
  --ye-light: #f4f7fb;
  --ye-text: #1a2b44;
  --ye-muted: #6b7a90;
  --ye-gradient: linear-gradient(135deg, #0a1628 0%, #1258ca 100%);
  --ye-menu-gradient: linear-gradient(135deg, rgba(18, 88, 202, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%);
  --ye-topbar-gradient: linear-gradient(90deg, rgba(10, 22, 40, 0.98) 0%, rgba(18, 88, 202, 0.95) 100%);
  --ye-menu-gradient-scrolled: linear-gradient(135deg, rgba(14, 72, 168, 0.98) 0%, rgba(10, 22, 40, 1) 100%);
  --ye-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
  --ye-radius: 1rem;
  --ye-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ye-text);
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-accent { color: var(--ye-accent) !important; }
.text-primary-brand { color: var(--ye-primary) !important; }
.bg-brand-dark { background: var(--ye-dark) !important; }
.bg-brand-gradient { background: var(--ye-gradient) !important; }

/* Site Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: var(--ye-transition);
}

.site-header.is-scrolled .nav-topbar {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
}

.nav-topbar {
  background: var(--ye-topbar-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  transition: all 0.35s ease;
  max-height: 50px;
  opacity: 1;
}

.nav-topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-topbar-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s;
}

.nav-topbar-item:hover { color: var(--ye-accent); }

.nav-topbar-item i { color: var(--ye-accent); font-size: 0.75rem; }

.nav-topbar-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.navbar-ye {
  position: relative;
  background: var(--ye-menu-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
  transition: all 0.35s ease;
  isolation: isolate;
}

.navbar-ye::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, transparent 45%, rgba(0, 0, 0, 0.08) 100%);
  z-index: -1;
  pointer-events: none;
}

.navbar-ye.scrolled {
  background: var(--ye-menu-gradient-scrolled);
  padding: 0.55rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar-ye.scrolled::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%, rgba(0, 0, 0, 0.12) 100%);
}

/* Brand */
.ye-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transform: translateZ(0);
}

.ye-brand-logo {
  height: 46px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
  transition: height 0.35s ease, filter 0.35s ease;
}

.site-header.is-scrolled .ye-brand-logo {
  height: 40px;
}

.ye-brand:hover .ye-brand-logo {
  filter: drop-shadow(0 2px 8px rgba(255, 102, 0, 0.25));
}

/* Desktop nav links */
.ye-nav-list { gap: 0.25rem; }

.ye-nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  transition: all 0.25s ease;
}

.ye-nav-link i {
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.ye-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.ye-nav-link:hover i { opacity: 1; }

.ye-nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.ye-nav-link.active i {
  opacity: 1;
  color: var(--ye-accent);
}

.btn-nav-cta {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile phone btn */
.btn-nav-phone {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.35);
  color: var(--ye-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--ye-transition);
}

.btn-nav-phone:hover {
  background: var(--ye-accent);
  color: #fff;
  border-color: var(--ye-accent);
}

/* Custom hamburger */
.ye-toggler {
  border: none;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ye-toggler:focus { box-shadow: none; }

.ye-toggler-box {
  width: 20px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ye-toggler-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ye-toggler[aria-expanded="true"] .ye-toggler-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ye-toggler[aria-expanded="true"] .ye-toggler-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ye-toggler[aria-expanded="true"] .ye-toggler-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile offcanvas */
.ye-offcanvas {
  background: var(--ye-menu-gradient);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  width: min(340px, 88vw) !important;
}

.ye-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
}

.ye-offcanvas-brand img { height: 40px; }

.ye-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0;
}

.ye-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.ye-mobile-link i:first-child {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ye-mobile-link .bi-arrow-right {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.ye-mobile-link:hover,
.ye-mobile-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ye-mobile-link:hover .bi-arrow-right,
.ye-mobile-link.active .bi-arrow-right {
  opacity: 0.6;
  transform: translateX(0);
}

.ye-mobile-link.active i:first-child {
  background: rgba(255, 102, 0, 0.2);
  color: var(--ye-accent);
}

.ye-mobile-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ye-mobile-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  transition: color 0.2s;
}

.ye-mobile-contact:hover { color: var(--ye-accent); }

/* Body offset for fixed header */
body { padding-top: 72px; }

@media (min-width: 1200px) {
  body { padding-top: 118px; }
  body.nav-scrolled { padding-top: 68px; }
}

@media (max-width: 1199px) {
  body.nav-scrolled { padding-top: 62px; }
}

.btn-ye-primary {
  background: var(--ye-accent);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  transition: var(--ye-transition);
}

.btn-ye-primary:hover {
  background: #e55a00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35);
}

.btn-ye-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: transparent;
  transition: var(--ye-transition);
}

.btn-ye-outline:hover {
  background: #fff;
  color: var(--ye-dark);
}

/* Hero */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 92vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ye-dark);
}

.hero-carousel {
  width: 100%;
  height: 92vh;
  min-height: 92vh;
}

.hero-carousel .carousel-inner {
  width: 100%;
  height: 100%;
}

.hero-carousel .carousel-item {
  width: 100%;
  height: 92vh;
  min-height: 92vh;
}

.hero-slide {
  width: 100%;
  height: 92vh;
  min-height: 92vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  width: 100%;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 3;
  width: 8%;
}

.hero-carousel .carousel-indicators {
  z-index: 3;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 102, 0, 0.15);
  color: var(--ye-accent);
  border: 1px solid rgba(255, 102, 0, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Sections */
.section-padding { padding: 5.5rem 0; }

.section-label {
  color: var(--ye-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

/* Service cards */
.service-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: var(--ye-radius);
  padding: 2rem;
  height: 100%;
  transition: var(--ye-transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--ye-primary);
  transform: scaleY(0);
  transition: var(--ye-transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ye-shadow);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(18, 88, 202, 0.1);
  color: var(--ye-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Stats */
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ye-primary);
  line-height: 1;
}

.stat-label {
  color: var(--ye-muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Reference gallery */
.filter-btn {
  border: 1px solid #dde4ee;
  background: #fff;
  color: var(--ye-text);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--ye-transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ye-primary);
  border-color: var(--ye-primary);
  color: #fff;
}

.ref-card {
  border: none;
  border-radius: var(--ye-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--ye-transition);
  cursor: pointer;
  background: #fff;
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ye-shadow);
}

.ref-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ref-card:hover img { transform: scale(1.05); }

.ref-card .card-body {
  padding: 1rem 1.25rem;
}

.ref-card .ship-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.ref-card .ship-cat {
  font-size: 0.8rem;
  color: var(--ye-muted);
  margin: 0;
}

/* CTA */
.cta-section {
  background: var(--ye-gradient);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Contact */
.contact-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-intro-text {
  color: var(--ye-muted);
  margin-bottom: 0;
  max-width: 420px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.contact-channel-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
}

a.contact-channel-card:hover {
  border-color: rgba(18, 88, 202, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.08);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18, 88, 202, 0.12) 0%, rgba(18, 88, 202, 0.06) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ye-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.contact-channel-body strong {
  color: var(--ye-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-channel-body span {
  color: var(--ye-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-channel-body a {
  color: var(--ye-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-channel-body a:hover {
  color: var(--ye-accent);
}

.contact-channel-arrow {
  color: var(--ye-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

a.contact-channel-card:hover .contact-channel-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--ye-accent);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.contact-social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ye-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-social-links {
  display: flex;
  gap: 0.6rem;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8edf4;
  color: var(--ye-primary);
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-social-links a:hover {
  background: var(--ye-accent);
  border-color: var(--ye-accent);
  color: #fff;
  transform: translateY(-2px);
}

.contact-form-panel {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
  height: 100%;
}

.contact-form-header {
  margin-bottom: 1.75rem;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ye-accent);
  margin-bottom: 0.75rem;
}

.contact-form-header h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: var(--ye-muted);
  margin: 0;
  font-size: 0.95rem;
}

.contact-form .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ye-text);
  margin-bottom: 0.45rem;
}

.contact-input-wrap {
  position: relative;
}

.contact-input-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ye-muted);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.contact-input-wrap .form-control,
.contact-input-wrap .form-select {
  padding-left: 2.75rem;
  border: 1px solid #dde4ee;
  border-radius: 0.85rem;
  min-height: 48px;
  background: #fafbfd;
  transition: all 0.22s ease;
}

.contact-input-wrap .form-control:focus,
.contact-input-wrap .form-select:focus {
  background: #fff;
  border-color: var(--ye-primary);
  box-shadow: 0 0 0 3px rgba(18, 88, 202, 0.12);
}

.contact-input-wrap--textarea > i {
  top: 1.1rem;
  transform: none;
}

.contact-input-wrap--textarea .form-control {
  min-height: 140px;
  padding-top: 0.85rem;
  resize: vertical;
}

.contact-trust {
  margin-top: 2.5rem !important;
}

.contact-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 1rem;
  height: 100%;
}

.contact-trust-item > i {
  font-size: 1.35rem;
  color: var(--ye-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-trust-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ye-text);
  margin-bottom: 0.15rem;
}

.contact-trust-item span {
  font-size: 0.85rem;
  color: var(--ye-muted);
  line-height: 1.5;
}

.contact-form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-form-status.success,
.contact-form-status.error {
  display: block;
}

.contact-form-status.success {
  background: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.contact-form-status.error {
  background: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.contact-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: var(--ye-radius);
  padding: 1.75rem;
}

.contact-card i {
  font-size: 1.5rem;
  color: var(--ye-primary);
  margin-bottom: 1rem;
}

.form-control, .form-select {
  border: 1px solid #dde4ee;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--ye-primary);
  box-shadow: 0 0 0 3px rgba(18, 88, 202, 0.15);
}

@media (max-width: 991px) {
  .contact-form-panel {
    padding: 1.5rem;
  }
}

/* Footer */
.footer-ye {
  position: relative;
  background: var(--ye-dark);
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0;
}

.footer-ye::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(18, 88, 202, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-cta {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 2.5rem;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 2.25rem;
  border-radius: 1.25rem;
  background: var(--ye-menu-gradient);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ye-accent);
  margin-bottom: 0.65rem;
}

.footer-cta-text h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 0.5rem;
}

.footer-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0 3rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
  filter: drop-shadow(0 4px 12px rgba(255, 102, 0, 0.25));
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-link:hover {
  background: var(--ye-accent);
  border-color: var(--ye-accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--ye-accent);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.93rem;
  transition: all 0.22s ease;
  padding: 0.2rem 0;
}

.footer-link i {
  font-size: 0.9rem;
  color: var(--ye-accent);
  opacity: 0.85;
  width: 1.1rem;
  text-align: center;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 102, 0, 0.35);
  transform: translateY(-2px);
}

.footer-contact-card--static {
  cursor: default;
}

.footer-contact-card--static:hover {
  transform: none;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(18, 88, 202, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ye-accent);
  flex-shrink: 0;
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.footer-contact-body strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-contact-body span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  transition: color 0.22s ease;
  word-break: break-all;
}

.footer-contact-item i {
  color: var(--ye-accent);
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0 1.75rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer-top-btn:hover {
  background: var(--ye-accent);
  border-color: var(--ye-accent);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .footer-cta {
    padding: 2.5rem 0 2rem;
  }

  .footer-cta-inner {
    padding: 1.5rem;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-cta-actions {
    flex-direction: column;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Page header */
.page-header {
  background: var(--ye-gradient);
  padding: 4rem 0 3.5rem;
  color: #fff;
  margin-top: -1px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--ye-transition);
  padding: 2rem;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 0.5rem;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product page */
.product-hero-img {
  border-radius: var(--ye-radius);
  box-shadow: var(--ye-shadow);
  width: 100%;
}

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list li i {
  color: var(--ye-accent);
  margin-top: 0.2rem;
}

@media (max-width: 991px) {
  .hero-content { padding-top: 6rem; }
  .section-padding { padding: 4rem 0; }
}
