/* ============
   Base styles
   ============ */
:root {
  /* Light theme with red accents */
  --bg: #ffffff;
  --surface: #f7f8fa;
  --panel: #ffffff;
  --ink: #1a1f2b;
  --muted: #5a6472;
  --brand: #e10600;   /* exact XTRA red */
  --brand-2: #b40000; /* darker edge for borders/shadows */
  --accent: #111111;
  --ring: rgba(227, 6, 19, 0.2);
  --line: #e7ebf0;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-top: 132px; /* account for fixed two-tier header */
}

/* Remove body padding for sticky nav */
body {
  padding-top: 0 !important;
}

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: var(--brand); color: #001814; padding: 8px 10px; border-radius: 0; }

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 10px; }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); }
.muted { color: var(--muted); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 0; border: 1px solid var(--line); color: var(--ink); background: #ffffff; text-decoration: none; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform .05s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.15); text-decoration: none; }
.btn.primary { background: #ffffff; color: var(--ink); border: 1px solid #ffffff; }
.btn.secondary { background: var(--brand); color: #ffffff; border: 1px solid var(--brand-2); }
.btn.ghost { background: transparent; border-color: var(--brand); color: var(--brand); }

.section { padding: 72px 0; background: var(--panel); }
.section.alt { background: var(--surface); }
.section-head { margin-bottom: 28px; }

.grid { display: grid; gap: 16px; }

.card { background: #ffffff; border: 1px solid var(--line); border-radius: 0; padding: 18px; box-shadow: 0 10px 30px -18px rgba(0,0,0,0.12); }
.card p { margin: 0; }

/* ============
   Header
   ============ */
/* Original site-header rule - now overridden by .xtra-header */
.site-header { 
  position: sticky; 
  top: auto; 
  left: auto; 
  right: auto; 
  z-index: auto; 
  color: #fff; 
  border-bottom: 0; 
  box-shadow: none; 
}

/* Force sticky navigation for all pages */
.xtra-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
  background: #fff !important;
}

/* Top tier - white background with logo and contact */
.header-top {
  background: #fff;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-info .icon {
  color: var(--brand);
  font-size: 16px;
}

/* Bottom tier - red navigation */
.header-bottom {
  background: var(--brand);
  position: relative;
}

.header-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100px;
  height: 20px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.header-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  color: #fff; 
  text-decoration: none; 
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-mark { 
  display: grid; 
  place-items: center; 
  width: 42px; 
  height: 42px; 
  border-radius: 0; 
  background: rgba(255,255,255,0.15); 
  color: white; 
  font-weight: 800; 
  letter-spacing: 0.5px; 
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo:hover .logo-mark {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: rotate(5deg);
}

.logo-text { 
  display: flex; 
  flex-direction: column; 
  font-size: 14px; 
  color: #fff; 
}

.logo-text strong { 
  font-weight: 800; 
  letter-spacing: .4px; 
  font-size: 18px; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-text small { 
  color: rgba(255,255,255,0.8); 
  line-height: 1.1; 
  font-weight: 500;
}

.logo-text small.cn { 
  color: rgba(255,255,255,0.9); 
  font-weight: 600;
}

.main-nav { 
  display: flex;
  align-items: center;
}

.main-nav ul { 
  display: flex; 
  list-style: none; 
  gap: 32px; 
  padding: 0; 
  margin: 0;
}

.main-nav a { 
  color: #fff; 
  opacity: 0.95; 
  font-weight: 700; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  position: relative; 
  padding: 20px 0; 
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.main-nav a:hover { 
  opacity: 1; 
  text-decoration: none; 
  background: rgba(255,255,255,0.1);
}

.main-nav a::before { 
  content: ""; 
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  height: 3px; 
  background: rgba(255,255,255,0.9); 
  transform: scaleX(0); 
  transform-origin: left;
  transition: transform .3s ease; 
}

.main-nav a:hover::before { 
  transform: scaleX(1); 
}

.nav-toggle { 
  display: none; 
  background: transparent; 
  border: 0; 
  width: 44px; 
  height: 44px; 
  border-radius: 0; 
  position: relative; 
}

.nav-toggle .bar { 
  display: block; 
  position: absolute; 
  left: 10px; 
  right: 10px; 
  height: 2px; 
  background: #fff; 
  border-radius: 0; 
  transition: all 0.3s ease;
}

.nav-toggle .bar:nth-child(1) { top: 16px; }
.nav-toggle .bar:nth-child(2) { top: 23px; }
.nav-toggle .bar:nth-child(3) { top: 30px; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch select { 
  background: rgba(255,255,255,0.1); 
  color: #fff; 
  border: 1px solid rgba(255,255,255,0.2); 
  padding: 8px 12px; 
  border-radius: 0; 
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lang-switch select:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.lang-switch select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.action-icon:hover {
  opacity: 1;
}

/* ============
   Hero
   ============ */
.hero { position: relative; isolation: isolate; min-height: 82vh; overflow: hidden; color: #fff; background: none; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,0) 72%); z-index: -1; }
.hero-bg { position: absolute; inset: 0; background-image: url("https://unsplash.com/photos/jQl7c6xtKpU/download?force=true&w=2000"); background-size: cover; background-position: 78% center; filter: grayscale(100%); z-index: -2; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -40px; height: 140px; background: #fff; clip-path: polygon(0 65%, 100% 20%, 100% 100%, 0% 100%); z-index: 1; }
.hero-inner { padding: 88px 0 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.hero-copy { margin-left: auto; text-align: right; margin-top: 5rem; }
.hero h1 .red { color: var(--brand); }
.hero h1 { margin: .4rem 0 .6rem; text-transform: uppercase; font-weight: 900; font-size: clamp(32px, 6.5vw, 72px); line-height: 1.05; letter-spacing: .02em; color: #fff; }
.hero .sub { color: #e8eaee; max-width: 52ch; line-height: 1.6; }
.hero .cta-row { display: flex; gap: 10px; margin: 18px 0 22px; }
.badges { display: flex; gap: 8px; list-style: none; padding: 0; margin: 14px 0 0; }
.badges li { font-size: 12px; color: var(--ink); border: 1px solid var(--line); padding: 6px 10px; border-radius: 0; background: #fff; }

.hero-art { display: none; }
.hero-image { display: none; }

/* Trust logos */
.trust-logos { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 20px; align-items: center; padding: 12px 16px; border: 1px dashed rgba(255,255,255,.28); border-radius: 0; background: rgba(255,255,255,.05); }
.trust-logos .logo-ph { height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 0; display: grid; place-items: center; color: #e5e8ed; font-weight: 700; }
.trust-logos img { height: 28px; display: block; opacity: .92; filter: brightness(1.1); }

/* ============
   Services
   ============ */
.services-grid { grid-template-columns: repeat(4, 1fr); }
.services-grid .card { min-height: 150px; }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--brand); color: white; display: grid; place-items: center; font-weight: 800; }

/* ============
   About
   ============ */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: center; }
.about-copy p { margin: 0 0 8px; }
.ticks { list-style: none; padding: 0; margin: 14px 0 0; }
.ticks li { margin: 6px 0; padding-left: 22px; position: relative; }
.ticks li::before { content: "✓"; color: var(--brand); position: absolute; left: 0; }
.about-media { position: relative; height: 260px; }
.about-media .shape { position: absolute; inset: 0 20% 35% 0; background: #ffffff; border: 1px solid var(--line); border-radius: 0; box-shadow: 0 20px 60px -20px rgba(0,0,0,.1); }
.about-media .shape.s2 { inset: 36% 0 0 18%; transform: rotate(-8deg); background: #fff; }
.about-media .shape.s3 { inset: 12% 12% 18% 12%; border-radius: 0; background: radial-gradient(closest-side, rgba(227,6,19,.08), rgba(0,0,0,0)); border: 0; box-shadow: none; }

/* ============
   Work
   ============ */
.work-grid { grid-template-columns: repeat(3, 1fr); }
.cover-ph { background: #f2f4f7; border: 1px dashed var(--line); border-radius: 0; height: 160px; display: grid; place-items: center; color: #8a94a6; font-weight: 700; }

/* ============
   Contact
   ============ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 10px; }
.contact-list li { margin: 6px 0; }

.contact-form { background: #ffffff; border: 1px solid var(--line); border-radius: 0; padding: 18px; }
.contact-form label { display: grid; gap: 6px; margin: 8px 0; font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 0; padding: 10px 12px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--brand); box-shadow: 0 0 0 6px var(--ring); }
.contact-form .form-note { color: var(--muted); font-size: 12px; margin: 6px 0 0; }

/* Testimonials slider */
.slider { position: relative; overflow: hidden; }
.slides { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; transition: transform .4s ease; }
.slide { padding: 18px; }
.slider-nav { display: flex; gap: 10px; margin-top: 10px; }
.dot { width: 10px; height: 10px; border-radius: 0; background: #d0d5dd; border: 0; }
.dot.active { background: var(--brand); }

/* ============
   Footer
   ============ */
.site-footer { padding: 28px 0 40px; border-top: 1px solid var(--line); background: #ffffff; }
.footer-inner { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.sep { opacity: .35; padding: 0 8px; }

/* ============
   Responsive
   ============ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .main-nav ul { display: none; position: absolute; right: 20px; top: 64px; background: var(--brand); border: 1px solid rgba(255,255,255,0.25); border-radius: 12px; padding: 10px; flex-direction: column; width: min(220px, 80vw); }
  .main-nav ul.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .hero .cta-row { flex-wrap: wrap; }
.work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px){
  .hero{ min-height:70vh; }
  .hero::after{ height:110px; bottom:-32px; }
  .hero-inner{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .hero h1{ font-size:clamp(28px, 9vw, 44px); }
  .paddle{ display:none; }
}

/* Utility */
.pill { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 4px 10px; font-size: 12px; }
.band { background: var(--brand); color: #fff; padding: 10px 14px; border-radius: 0; display: inline-block; font-weight: 800; letter-spacing: .6px; }

/* ======= Footer (reference-style) ======= */
.footer-wrap { margin-top: 20px; }
.footer-top { background: #2f3337; color: #e9edf3; padding: 48px 0; }
.footer-grid { display: grid; gap: 24px; grid-template-columns: 1.3fr 1fr 1fr 1fr; align-items: start; }

.footer-card { background: #111416; color: #fff; border-radius: 0; padding: 22px; border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.footer-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 200px at 20% 100%, rgba(227,6,19,0.1), transparent 60%); }
.footer-card .logo-mark { background: #fff; color: var(--brand); }
.footer-card .logo-text { color: #fff; }
.foot-contact { list-style: none; padding: 10px 0 0; margin: 0; display: grid; gap: 10px; }
.foot-contact li { display: flex; align-items: center; gap: 10px; }
.foot-contact .ico { width: 28px; height: 28px; border-radius: 0; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 14px; }
.foot-contact a { color: #fff; text-decoration: none; }

.footer-col h4 { color: #fff; margin: 0; text-transform: uppercase; letter-spacing: .8px; }
.footer-col h4::after { content: ""; display: block; width: 32px; height: 3px; background: var(--brand); margin: 8px 0 12px; border-radius: 2px; }
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.link-list li { display: flex; align-items: center; gap: 8px; color: #cfd5dd; }
.link-list li::before { content: "›"; color: var(--brand); font-weight: 900; }
.link-list a { color: #cfd5dd; text-decoration: none; }
.link-list a:hover { color: #ffffff; }

.footer-bottom { background: #ffffff; color: var(--ink); border-top: 1px solid var(--line); }
.bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; font-size: 14px; }
.bottom-links { display: flex; gap: 10px; align-items: center; }
.bottom-links a { color: var(--ink); text-decoration: none; }
.bottom-links .div { opacity: .45; }
/* CTAs in hero */
.hero .btn.primary { background: var(--brand); color: #fff; border: 1px solid var(--brand-2); }
.hero .btn.secondary { background: #fff; color: #111; border: 1px solid #fff; }

/* paddles */
.paddle { position: absolute; top: 50%; width: 44px; height: 44px; background: var(--brand); border: none; border-radius: 0; cursor: pointer; transform: translateY(-50%); z-index: 2; }
.paddle--left { left: 14px; }
.paddle--right { right: 14px; }
.paddle::after { content: ""; position: absolute; inset: 0; margin: auto; width: 10px; height: 10px; border-right: 3px solid #fff; border-bottom: 3px solid #fff; transform: rotate(-45deg); }
.paddle--left::after { transform: rotate(135deg); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr; }
  .bottom-inner { flex-direction: column; text-align: center; }
}
.service-card { position: relative; overflow: hidden; border-radius: 0; border: none; background: #fff; }
.service-card .img-ph { 
  position: relative; 
  height: 30vh; 
  background: #d9dee5; 
  display: grid; 
  place-items: center; 
  color: #6b7480; 
  font-weight: 800; 
  letter-spacing: .6px; 
  overflow: visible; 
}
.service-card .img-ph img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  filter: grayscale(100%);
  transition: transform .35s ease, filter .35s ease; 
}
.service-card .service-text { padding: 28px 16px 16px; }
.service-card h3 { margin: 0 0 6px; text-transform: uppercase; letter-spacing: .8px; }
.icon-tile { 
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%); 
  bottom: -28px; 
  width: 72px; 
  height: 72px; 
  background: var(--brand); 
  color: #fff; 
  display: grid; 
  place-items: center; 
  border-radius: 0; 
  border: 2px solid #fff; 
  box-shadow: 0 6px 16px rgba(0,0,0,.15); 
  z-index: 10; 
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: iconPulse 3s ease-in-out infinite;
}
.icon { width: 32px; height: 32px; display: block; color: #fff; transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* hover effects */

.service-card:hover .img-ph img { 
  transform: scale(1.06); 
  filter: grayscale(60%) saturate(1.05) contrast(1.02); 
}
.service-card:hover .icon-tile { 
  transform: translateX(-50%) translateY(-8px) scale(1.1) rotate(5deg); 
  box-shadow: 0 16px 32px rgba(225,6,0,.4), 0 0 0 8px rgba(225,6,0,.1); 
  background: linear-gradient(135deg, var(--brand), #b40000);
  border-radius: 0;
}
.service-card:hover .icon { 
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

/* Generic image helpers */
.img-ph img, .cover-ph img, .cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Icon animations */
@keyframes iconPulse {
  0%, 100% { 
    transform: translateX(-50%) scale(1);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
  }
  50% { 
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
}

/* About section - redesigned */
.text-center {
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.about-card {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}

.about-card h3 {
  color: var(--brand);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.about-card p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.about-features {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225,6,0,0.1);
}

.feature-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 0;
  flex-shrink: 0;
}

.feature-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-visual {
  position: relative;
}

.hero-image-large {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.hero-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.hero-image-large:hover img {
  filter: grayscale(60%) saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

.about-bottom {
  display: grid;
  gap: 60px;
}

.values-section h3,
.partners-section h3 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.value-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(225,6,0,0.12);
}

.value-item h4 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partner-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.partner-logo a:hover {
  transform: translateY(-2px);
}

.partner-logo img {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  transform: scale(1.05);
}

.partner-logo span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.partner-logo:hover span {
  color: var(--brand);
}

@media (max-width: 980px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partner-logos {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .about-card {
    padding: 24px;
  }
  
  .hero-image-large {
    height: 300px;
  }
}

/* Contact section - simplified */
.contact-simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.contact-image:hover img {
  filter: grayscale(60%) saturate(1.1) contrast(1.05);
  transform: scale(1.02);
}

.contact-cta {
  text-align: left;
}

.contact-cta h3 {
  color: var(--ink);
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}

.contact-cta p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.contact-info {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.contact-info p {
  margin: 0 0 8px;
  font-size: 14px;
}

.contact-info strong {
  color: var(--ink);
  font-weight: 600;
}

.contact-info a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--brand-2);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-simple {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .contact-cta {
    text-align: center;
  }
  
  .contact-buttons {
    justify-content: center;
  }
  
  .contact-image {
    height: 250px;
  }
}

/* Partner logo links styling */
.logos-grid .cover-ph a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.logos-grid .cover-ph a:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

.logos-grid .cover-ph img {
  transition: all 0.3s ease;
}

.logos-grid .cover-ph a:hover img {
  filter: brightness(1.2);
}

/* Simple partners design */
.partners-simple {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 20px;
}

.partner-item {
  text-align: center;
}

.partner-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.partner-item a:hover {
  transform: translateY(-2px);
}

.partner-item img {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.partner-item a:hover img {
  transform: scale(1.05);
}

.partner-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.partner-item a:hover span {
  color: var(--brand);
}

@media (max-width: 768px) {
  .partners-simple {
    flex-direction: column;
    gap: 30px;
  }
}

/* ======= Footer - XTRA Style ======= */
.footer-wrap { 
  background: #1a1a1a; 
  color: #fff; 
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

/* Main footer area */
.footer-main {
  padding: 60px 0;
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333' fill-opacity='0.1'%3E%3Cpolygon points='30 0 60 30 30 60 0 30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Left side - Company info with geometric pattern */
.footer-left {
  position: relative;
}

.footer-logo {
  margin-bottom: 30px;
}

.logo-mark-red {
  position: relative;
  width: 60px;
  height: 40px;
  margin-bottom: 16px;
}

.logo-shape {
  position: absolute;
  background: var(--brand);
  border-radius: 2px;
}

.logo-shape-1 {
  width: 32px;
  height: 24px;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.logo-shape-2 {
  width: 28px;
  height: 20px;
  top: 8px;
  left: 20px;
  transform: rotate(8deg);
}

.footer-logo h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 14px;
}

.contact-icon {
  color: var(--brand);
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Right side - Navigation links */
.footer-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li::before {
  content: '>';
  color: #666;
  font-weight: 600;
  font-size: 12px;
}

.footer-links a {
  color: #ccc;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

/* Bottom footer bar */
.footer-bottom {
  background: #fff;
  color: #666;
  padding: 16px 0;
  border-top: 1px solid #333;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.separator {
  color: #ccc;
}

.footer-bottom-left a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-left a:hover {
  color: var(--brand);
}

.scroll-top {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.scroll-top span {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  background: #ffd700;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.chat-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.chat-icon {
  font-size: 24px;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-bottom-left {
    flex-wrap: wrap;
    justify-content: center;
  }
}
