/* =============================================
   NORMAK INVESTMENT GROUP — TIDZ TETOVO
   Main Stylesheet
   ============================================= */

:root {
  --red:        #C41E1E;
  --red-dark:   #8B0000;
  --navy:       #0D1B2A;
  --navy-light: #1A2E45;
  --white:      #FFFFFF;
  --gray-light: #F4F5F7;
  --gray:       #8A95A3;
  --text:       #2C3E50;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* =============================================
   LANGUAGE TOGGLE
   ============================================= */
.lang-toggle {
  position: fixed; top: 18px; right: 20px; z-index: 1100;
  display: flex; gap: 3px;
  background: rgba(13,27,42,0.9);
  border: 1px solid rgba(196,30,30,0.4);
  border-radius: 30px; padding: 3px;
  backdrop-filter: blur(10px);
}
.lang-btn {
  padding: 5px 14px; border: none; border-radius: 24px;
  cursor: pointer; font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 1px;
  transition: all 0.2s; color: rgba(255,255,255,0.5); background: transparent;
}
.lang-btn.active { background: var(--red); color: white; }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(10,20,35,0.97);
  padding: 12px 48px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px);
}
.nav-logo img { height: 46px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #060f1a 0%, #0d1b2a 40%, #1a0505 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(196,30,30,0.12) 0%, transparent 55%),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(196,30,30,0.04) 79px, rgba(196,30,30,0.04) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background-image: url('../images/normak_hq.jpg');
  background-size: cover; background-position: center right;
  opacity: 0.12;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 160px 48px 100px; width: 100%;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--red); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--red); }
h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 88px); font-weight: 900;
  color: white; line-height: 1.02; margin-bottom: 26px;
}
h1.hero-title .accent { color: var(--red); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.8; margin-bottom: 48px; font-weight: 300;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.btn-p {
  background: var(--red); color: white;
  padding: 15px 36px; border-radius: 3px;
  text-decoration: none; font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid var(--red); transition: all 0.3s; display: inline-block;
}
.btn-p:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,30,30,0.45);
}
.btn-s {
  background: transparent; color: white;
  padding: 15px 36px; border-radius: 3px;
  text-decoration: none; font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.25); transition: all 0.3s; display: inline-block;
}
.btn-s:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }
.hero-stats {
  display: flex; gap: 52px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap;
}
.s-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; color: var(--red); line-height: 1;
}
.s-lbl {
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 100px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.sec-ey {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px;
}
.sec-ey::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.sec-ey.center { justify-content: center; }
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px); font-weight: 700;
  color: var(--navy); line-height: 1.12; margin-bottom: 18px;
}
.sec-title.wh { color: white; }
.sec-sub { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 600px; font-weight: 400; }
.sec-sub.wh { color: rgba(255,255,255,0.6); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 56px;
}
.img-wrap { position: relative; }
.img-wrap img { width: 100%; border-radius: 4px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.14); }
.img-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--red); color: white; padding: 22px 26px;
  border-radius: 4px; box-shadow: 0 8px 30px rgba(196,30,30,0.4);
}
.img-badge .n { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; line-height: 1; }
.img-badge .l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; opacity: 0.85; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.feat {
  padding: 18px 20px; border-left: 3px solid var(--red);
  background: var(--gray-light); border-radius: 0 3px 3px 0;
}
.feat h4 { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 5px; }
.feat p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* =============================================
   TIDZ SECTION
   ============================================= */
.tidz-section { background: var(--navy); position: relative; overflow: hidden; }
.tidz-section::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(196,30,30,0.06));
  pointer-events: none;
}
.tidz-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 56px;
}
.tidz-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.tc { background: var(--navy-light); padding: 28px 24px; transition: background 0.3s; }
.tc:hover { background: #1f3550; }
.tc.red { background: var(--red) !important; }
.tc-icon { font-size: 22px; margin-bottom: 14px; display: block; }
.tc h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.tc p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.65; }
.tc.red p { color: rgba(255,255,255,0.85); }

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section { background: var(--gray-light); }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.ben-card {
  background: white; padding: 34px 28px; border-radius: 4px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.055); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.ben-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.11); }
.ben-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.3s;
}
.ben-card:hover::after { transform: scaleX(1); }
.bn { font-family: 'Barlow Condensed', sans-serif; font-size: 60px; font-weight: 700; color: rgba(196,30,30,0.07); line-height: 1; margin-bottom: -10px; }
.bi { font-size: 26px; margin-bottom: 14px; display: block; }
.ben-card h3 { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 9px; }
.ben-card p { font-size: 13px; color: var(--gray); line-height: 1.75; }

/* =============================================
   WHY NORTH MACEDONIA
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.why-item { text-align: center; padding: 28px 18px; }
.why-item .wi { font-size: 34px; margin-bottom: 14px; display: block; }
.why-item h4 { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.why-item p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* =============================================
   FTA BAND
   ============================================= */
.fta-band { background: var(--navy); padding: 56px 48px; }
.fta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.fta-inner h3 {
  font-family: 'Playfair Display', serif; font-size: 26px;
  color: white; font-weight: 700; max-width: 240px;
}
.fta-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.ftag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); padding: 7px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600;
}
.ftag.hl { background: rgba(196,30,30,0.18); border-color: rgba(196,30,30,0.5); color: white; }

/* =============================================
   INVESTORS SECTION
   ============================================= */
.investors-section { background: var(--gray-light); }
.inv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.inv-card {
  background: white; border-radius: 4px; overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.055); transition: all 0.3s;
}
.inv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.inv-head {
  padding: 28px 26px 22px; border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
}
.inv-origin { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }
.inv-name { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; margin-top: 5px; }
.inv-flag { font-size: 38px; }
.inv-body { padding: 22px 26px 28px; }
.inv-ind {
  display: inline-block; background: rgba(196,30,30,0.08); color: var(--red);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 11px; border-radius: 2px; margin-bottom: 14px;
}
.inv-desc { font-size: 13px; color: var(--text); line-height: 1.78; margin-bottom: 18px; }
.inv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ist { background: var(--gray-light); padding: 11px 13px; border-radius: 3px; }
.ist .v { font-weight: 700; font-size: 14px; color: var(--red); }
.ist .k { font-size: 10px; color: var(--gray); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.inv-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(196,30,30,0.08); color: var(--red);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 2px; margin-top: 14px; text-transform: uppercase;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--navy); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,30,30,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.con-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px; align-items: start;
}
.con-info { display: flex; flex-direction: column; gap: 26px; }
.con-item { display: flex; gap: 18px; align-items: flex-start; }
.con-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(196,30,30,0.14); border: 1px solid rgba(196,30,30,0.3);
  border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.con-item h4 {
  color: rgba(255,255,255,0.45); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.con-item p, .con-item a { color: white; font-size: 15px; font-weight: 500; text-decoration: none; line-height: 1.5; }
.con-item a:hover { color: var(--red); }
.con-img { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.45); }
.con-img img { width: 100%; display: block; }

/* MAP */
.map-wrap { border-radius: 4px; overflow: hidden; margin-top: 56px; box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.map-wrap iframe { width: 100%; height: 350px; border: none; display: block; filter: grayscale(20%); }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #050c14; padding: 36px 48px; text-align: center; }
.foot-logo img { height: 44px; opacity: 0.5; margin-bottom: 16px; }
footer p { color: rgba(255,255,255,0.25); font-size: 12px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fi { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.v { opacity: 1; transform: none; }
.fi-d1 { transition-delay: 0.1s; }
.fi-d2 { transition-delay: 0.2s; }
.fi-d3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
  .tidz-grid { gap: 50px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ben-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  section { padding: 72px 20px; }
  .hero-content { padding: 130px 20px 80px; }
  .about-grid,
  .tidz-grid,
  .con-grid { grid-template-columns: 1fr; gap: 40px; }
  .img-badge { bottom: -16px; right: -10px; }
  .ben-grid { grid-template-columns: 1fr; }
  .inv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fta-inner { grid-template-columns: 1fr; gap: 26px; }
  .fta-band { padding: 48px 20px; }
  .hero-stats { gap: 30px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .tidz-cards { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .inv-stats { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn-p, .btn-s { text-align: center; }
}
