/* public/css/main.css */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --dark-4: #242424;
  --white: #F5F3EE;
  --gray: #888;
  --gray-light: #ccc;
  --font-d: 'Playfair Display', serif;
  --font-b: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: var(--font-b); overflow-x: hidden; }

a { color: inherit; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.hi {
  max-width: 1280px; margin: 0 auto; padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 900; font-size: 18px; color: var(--dark);
  overflow: hidden; flex-shrink: 0;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.logo-text { font-family: var(--font-d); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-text span { display: block; font-size: 11px; font-weight: 400; font-family: var(--font-b); color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: var(--gray-light); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
nav a:hover, nav a.active { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lsw { display: flex; gap: 6px; }
.lb {
  padding: 4px 10px; background: transparent; border: 1px solid rgba(201,168,76,.3);
  color: var(--gray); font-size: 11px; font-weight: 600; letter-spacing: 1px;
  cursor: pointer; border-radius: 3px; transition: all .2s; font-family: var(--font-b); text-decoration: none;
}
.lb:hover, .lb.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.hcta {
  padding: 9px 18px; background: var(--gold); color: var(--dark); border: none; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .2s; font-family: var(--font-b); text-decoration: none; white-space: nowrap;
}
.hcta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--dark-2); border-bottom: 1px solid rgba(201,168,76,.2); padding: 8px 0;
}
.mobile-nav a { padding: 14px 24px; font-size: 14px; font-weight: 500; color: var(--gray-light); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.04); display: block; }
.mobile-nav a:hover { color: var(--gold); background: rgba(201,168,76,.05); }
.mobile-nav.open { display: flex; }

/* ── PAGE WRAPPER ── */
.page-content { padding-top: 72px; min-height: 100vh; }

/* ── SECTIONS ── */
section { padding: 100px 32px; }
.si { max-width: 1280px; margin: 0 auto; }
.stag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.stitle { font-family: var(--font-d); font-size: clamp(28px,3.5vw,48px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; white-space: pre-line; }
.ssub { font-size: 16px; color: var(--gray); max-width: 600px; line-height: 1.7; }
.sbg { background: var(--dark-2); }

/* ── HERO ── */
.hero { position: relative; min-height: calc(100vh - 72px); display: flex; align-items: center; overflow: hidden; }
.hbg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.09) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.04) 0%, transparent 60%); }
.hgrid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(201,168,76,.05) 1px,transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%); }
.hcont { position: relative; max-width: 1280px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.hbadge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border: 1px solid var(--gold); border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.hbadge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.htitle { font-family: var(--font-d); font-size: clamp(36px,5vw,64px); font-weight: 900; line-height: 1.05; margin-bottom: 24px; white-space: pre-line; }
.htitle em { font-style: normal; color: var(--gold); }
.hdesc { font-size: 17px; color: var(--gray); line-height: 1.7; margin-bottom: 40px; max-width: 500px; }
.hact { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hstats { display: flex; gap: 32px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
.snum { font-family: var(--font-d); font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; }
.slbl { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── HERO FORM ── */
.hform { background: var(--dark-3); border: 1px solid rgba(201,168,76,.2); border-radius: 16px; padding: 40px; }
.hform h3 { font-family: var(--font-d); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.hform > p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

/* ── BUTTONS ── */
.btn-p { padding: 14px 32px; background: var(--gold); color: var(--dark); border: none; border-radius: 4px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all .25s; font-family: var(--font-b); text-decoration: none; display: inline-block; }
.btn-p:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
.btn-o { padding: 14px 32px; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all .25s; font-family: var(--font-b); text-decoration: none; display: inline-block; }
.btn-o:hover { border-color: var(--gold); color: var(--gold); }

/* ── FORMS ── */
.ff { margin-bottom: 16px; }
.ff label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.ff input, .ff textarea, .ff select { width: 100%; padding: 12px 16px; background: var(--dark-4); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: var(--white); font-size: 14px; font-family: var(--font-b); outline: none; transition: border-color .2s; -webkit-appearance: none; }
.ff input:focus, .ff textarea:focus, .ff select:focus { border-color: var(--gold); }
.ff textarea { height: 90px; resize: vertical; }
.ff select option { background: var(--dark-3); }
.fsub { width: 100%; padding: 14px; background: var(--gold); color: var(--dark); border: none; border-radius: 6px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all .25s; font-family: var(--font-b); margin-top: 8px; }
.fsub:hover { background: var(--gold-light); }
.smsg { padding: 14px; border-radius: 8px; font-size: 14px; text-align: center; display: none; margin-top: 12px; }
.smsg.success { background: rgba(201,168,76,.1); border: 1px solid var(--gold); color: var(--gold); }
.smsg.error { background: rgba(220,50,50,.1); border: 1px solid #e66; color: #e66; }
.grow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── SERVICES ── */
.sgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.scard { background: var(--dark-3); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 36px 28px; transition: all .3s; }
.scard:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.sicon { width: 52px; height: 52px; background: rgba(201,168,76,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.sname { font-family: var(--font-d); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.sdesc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── ABOUT ── */
.agrid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.avis { position: relative; }
.aimain { width: 100%; height: 480px; background: var(--dark-3); border-radius: 16px; overflow: hidden; border: 1px solid rgba(201,168,76,.2); }
.aimain img { width: 100%; height: 100%; object-fit: cover; }
.abadge { position: absolute; bottom: -24px; right: -24px; width: 140px; height: 140px; background: var(--gold); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--dark); }
.abadge .num { font-family: var(--font-d); font-size: 42px; font-weight: 900; line-height: 1; }
.abadge .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: center; white-space: pre-line; }
.alist { list-style: none; margin: 28px 0 36px; }
.alist li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 15px; color: var(--gray-light); display: flex; align-items: center; gap: 12px; }
.alist li::before { content: ''; width: 20px; height: 20px; background: rgba(201,168,76,.15); border: 1px solid var(--gold); border-radius: 4px; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ── PARTNERS ── */
.ptw { overflow: hidden; margin-top: 48px; position: relative; }
.ptw::before, .ptw::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.ptw::before { left: 0; background: linear-gradient(90deg, var(--dark-2), transparent); }
.ptw::after { right: 0; background: linear-gradient(-90deg, var(--dark-2), transparent); }
.ptrack { display: flex; gap: 48px; animation: scrollp 25s linear infinite; width: max-content; }
.ptrack:hover { animation-play-state: paused; }
@keyframes scrollp { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.plogo { width: 160px; height: 80px; background: var(--dark-3); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; overflow: hidden; padding: 12px; }
.plogo:hover { border-color: var(--gold); }
.plogo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1) brightness(.7); transition: filter .2s; }
.plogo:hover img { filter: grayscale(0) brightness(1); }
.pph { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--gray); text-align: center; }

/* ── ARTICLES ── */
.argrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 56px; }
.arcard { background: var(--dark-3); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.arcard:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.3); }
.arcard a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.arimg { height: 200px; background: var(--dark-4); overflow: hidden; flex-shrink: 0; }
.arimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.arcard:hover .arimg img { transform: scale(1.05); }
.arimg-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg, #1c1c1c, #2a2a2a); }
.arbody { padding: 28px; flex: 1; }
.armeta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.arcat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,.1); padding: 3px 10px; border-radius: 100px; }
.ardate { font-size: 12px; color: var(--gray); }
.artitle { font-family: var(--font-d); font-size: 19px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.arexc { font-size: 14px; color: var(--gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.arfooter { padding: 16px 28px; border-top: 1px solid rgba(255,255,255,.06); font-size: 13px; font-weight: 600; color: var(--gold); }

/* ── SINGLE ARTICLE ── */
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; margin-bottom: 32px; }
.article-back:hover { opacity: .8; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; margin-bottom: 40px; }
.article-body { font-size: 16px; color: var(--gray-light); line-height: 1.85; }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-family: var(--font-d); font-size: 28px; font-weight: 700; color: var(--white); margin: 40px 0 16px; }

/* ── CONTACT ── */
.cgrid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; margin-top: 56px; }
.citem { display: flex; gap: 16px; margin-bottom: 32px; }
.cicon { width: 48px; height: 48px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cdet h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cdet p { font-size: 15px; color: var(--gray-light); }
.cdet a { color: var(--gray-light); text-decoration: none; }
.cdet a:hover { color: var(--gold); }
.cfbox { background: var(--dark-3); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 48px; }
.cfbox h3 { font-family: var(--font-d); font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.cfbox > p { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

/* ── FOOTER ── */
footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.06); padding: 80px 32px 32px; }
.fg { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 64px; margin-bottom: 64px; }
.fc h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.fc p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.fc ul { list-style: none; }
.fc ul li { margin-bottom: 12px; }
.fc ul li a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color .2s; }
.fc ul li a:hover { color: var(--gold); }
.fb { max-width: 1280px; margin: 0 auto; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--gray); flex-wrap: wrap; gap: 12px; }
.footer-brand { color: var(--gold); }

/* ── NOTIFICATION ── */
.notif { position: fixed; bottom: 32px; right: 32px; padding: 14px 24px; background: var(--dark-3); border: 1px solid var(--gold); border-radius: 8px; color: var(--gold); font-size: 14px; z-index: 99999; transform: translateY(80px); opacity: 0; transition: all .4s; pointer-events: none; }
.notif.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .sgrid, .argrid { grid-template-columns: repeat(2,1fr); }
  .hcont { grid-template-columns: 1fr; gap: 48px; }
  .agrid { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cgrid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .sgrid, .argrid { grid-template-columns: 1fr; }
  section { padding: 72px 20px; }
  .fg { grid-template-columns: 1fr; }
  .hstats { flex-wrap: wrap; gap: 24px; }
  .hcont { grid-template-columns: 1fr; padding: 40px 20px; }
  .grow2 { grid-template-columns: 1fr; }
  .cfbox { padding: 28px 20px; }
  .abadge { width: 110px; height: 110px; right: -10px; }
  .abadge .num { font-size: 32px; }
}

/* ── PARTNERS STRIP (before footer) ── */
.partners-strip {
  padding: 64px 0 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.partners-strip .si {
  padding: 0 32px;
  margin-bottom: 40px;
}
.partners-strip .stitle {
  font-size: clamp(22px, 2.5vw, 36px);
}
.ptw-outer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
}
