/*
Theme Name: Joana Dhimitri
Theme URI: https://joanadhimitri.com
Author: Joana Dhimitri
Version: 7.0
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── exactly like Kastriot */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}
.nav-logo span { color: #2d6a4f; }
.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-size: 15px;
  color: #444;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-menu a:hover { color: #2d6a4f; }
.nav-btn {
  background: #2d6a4f;
  color: #fff;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-btn:hover {
  background: #40916c;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

/* ── HERO ── exactly like Kastriot */
.hero {
  background: #faf8f4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  border-bottom: 1px solid #e8e8e2;
}
.hero-inner { max-width: 860px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.2);
  color: #2d6a4f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #2d6a4f;
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 span { color: #2d6a4f; }

.hero p {
  font-size: 18px;
  color: #555;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-hero-primary {
  background: #2d6a4f;
  color: #fff;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  background: #40916c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(82,183,136,0.35);
}
.btn-hero-secondary {
  background: transparent;
  color: #555;
  border: 1.5px solid #ccc;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  border-color: #2d6a4f;
  color: #2d6a4f;
}
.hero-note {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  border: 1px solid #e0ddd6;
  border-radius: 12px;
  overflow: hidden;
}
.hs {
  padding: 20px 32px;
  border-right: 1px solid #e0ddd6;
  text-align: center;
  flex: 1;
}
.hs:last-child { border-right: none; }
.hs-num {
  font-size: 32px;
  font-weight: 800;
  color: #2d6a4f;
  line-height: 1;
  margin-bottom: 4px;
}
.hs-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── TICKER ── */
.ticker {
  background: #2d6a4f;
  padding: 13px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
}
.ti {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.td { width: 4px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 50%; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── PROOF BAR ── */
.proof {
  background: #f8f8f5;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
}
.pi strong { color: #1a1a1a; font-weight: 700; }
.ps { width: 1px; height: 18px; background: #ddd; }

/* ── SECTIONS ── */
.section { padding: 80px 48px; }
.section-alt { background: #f8f8f5; }
.section-dark { background: #2d6a4f; }
.container { max-width: 1200px; margin: 0 auto; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 16px;
}
.label::before { content: ''; width: 20px; height: 2px; background: #2d6a4f; }

h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #1a1a1a;
  margin-bottom: 16px;
}
h2 span { color: #2d6a4f; }
.h2-white { color: #fff; }
.h2-white span { color: #52b788; }

.section-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 48px;
}
.section-sub-white { color: rgba(255,255,255,0.6); }

/* ── SECTION HEADER with CTA ── */
.sh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}
.sh-left { max-width: 560px; }
.sh-left .section-sub { margin-bottom: 0; }

/* ── BUTTONS ── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2d6a4f;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-green:hover {
  background: #40916c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2d6a4f;
  border: 2px solid #2d6a4f;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: #2d6a4f; color: #fff; transform: translateY(-2px); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2d6a4f;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover { background: #f0f0ea; box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.btn-white-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white-out:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── SERVICE GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scard {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.scard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: #2d6a4f;
  transition: width 0.3s;
  border-radius: 0 0 0 0;
}
.scard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: #2d6a4f; }
.scard:hover::after { width: 100%; }
.snum { font-size: 12px; font-weight: 600; color: #aaa; letter-spacing: 1px; margin-bottom: 12px; }
.sico { font-size: 28px; margin-bottom: 12px; }
.scard h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.scard p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 14px; }
.stags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.stag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #2d6a4f;
  background: rgba(45,106,79,0.08);
  padding: 4px 10px;
  border-radius: 4px;
}
.slink {
  font-size: 13px;
  font-weight: 600;
  color: #2d6a4f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.slink:hover gap { margin-left: 4px; }

/* Section footer CTA */
.sfooter {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
}
.sfooter p { font-size: 16px; color: #555; margin-bottom: 20px; }

/* ── WHY ME CARDS ── */
.grid-3-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
.wcard {
  background: rgba(255,255,255,0.04);
  padding: 32px;
  transition: background 0.2s;
}
.wcard:hover { background: rgba(255,255,255,0.08); }
.wico { font-size: 32px; margin-bottom: 16px; }
.wcard h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.wcard p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── AI SEO ── */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ai-text p { font-size: 15px; color: #444; line-height: 1.85; margin-bottom: 16px; }
.ai-text p strong { color: #1a1a1a; font-weight: 600; }
.ai-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
}
.aip {
  background: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.aip:hover { background: #f8f8f5; }
.aip-icon { font-size: 20px; }
.aip-name { font-size: 14px; font-weight: 600; color: #1a1a1a; }
.aip-sub { font-size: 12px; color: #777; }
.ai-cards { display: flex; flex-direction: column; gap: 1px; background: #e8e8e8; border-radius: 8px; overflow: hidden; }
.aic {
  background: #fff;
  padding: 18px 22px;
  transition: background 0.2s;
}
.aic:hover { background: #f8f8f5; }
.aic-title { font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: #2d6a4f; margin-bottom: 6px; }
.aic-desc { font-size: 13px; color: #555; line-height: 1.7; }
.aic-desc code { background: rgba(45,106,79,0.08); color: #2d6a4f; padding: 1px 5px; border-radius: 3px; font-size: 12px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { font-size: 15px; color: #444; line-height: 1.85; margin-bottom: 16px; }
.about-text p strong { color: #1a1a1a; font-weight: 600; }
.stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
}
.si {
  background: #fff;
  padding: 10px 14px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  transition: all 0.2s;
}
.si:hover { background: rgba(45,106,79,0.06); color: #2d6a4f; }
.about-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.acards { display: flex; flex-direction: column; gap: 12px; }
.acard {
  background: #f8f8f5;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px 24px;
  transition: all 0.2s;
}
.acard:hover { border-color: #2d6a4f; box-shadow: 0 4px 16px rgba(45,106,79,0.1); }
.acard-num { font-size: 36px; font-weight: 800; color: #2d6a4f; line-height: 1; margin-bottom: 4px; }
.acard-label { font-size: 13px; color: #666; }

/* ── PROCESS ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pcard {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.pcard:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); border-color: #2d6a4f; }
.pnum { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #2d6a4f; margin-bottom: 12px; }
.pcard h3 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.pcard p { font-size: 13px; color: #555; line-height: 1.75; }
.pbg {
  position: absolute;
  bottom: 10px; right: 14px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(45,106,79,0.05);
  line-height: 1;
}

/* ── COUNTRIES ── */
.countries-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.countries-grid p { font-size: 15px; color: #555; line-height: 1.8; margin: 12px 0 24px; }
.cgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.citem {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.2s;
}
.citem:hover { border-color: #2d6a4f; box-shadow: 0 4px 14px rgba(45,106,79,0.12); transform: translateY(-2px); }
.cflag { font-size: 28px; margin-bottom: 8px; }
.cname { font-size: 11px; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #1a3528 0%, #2d6a4f 60%, #1e3d2a 100%);
  padding: 100px 48px;
  text-align: center;
}
.cta-section .label { color: rgba(255,255,255,0.45); }
.cta-section .label::before { background: rgba(255,255,255,0.3); }
.cta-section h2 { color: #fff; font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.cta-section h2 span { color: #52b788; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.cta-ai { font-size: 13px; color: rgba(255,255,255,0.3); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.25); margin-top: 20px; }

/* ── FOOTER ── exactly like Kastriot */
.footer {
  background: #f3f0ea;
  padding: 64px 48px 0;
  border-top: 1px solid #e0ddd6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e0ddd6;
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.footer-logo span { color: #2d6a4f; }
.footer-desc { font-size: 13px; color: #666; line-height: 1.85; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: #777;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: #2d6a4f; color: #2d6a4f; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #1a1a1a; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #2d6a4f; }
.footer-loc { font-size: 14px; color: #666; line-height: 1.9; }
.footer-loc strong { color: #1a1a1a; font-weight: 600; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}
.footer-bottom a { color: #999; text-decoration: none; }
.footer-bottom a:hover { color: #2d6a4f; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media(max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-menu { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-wrap: wrap; }
  .hs { padding: 14px 16px; flex: 0 0 50%; }
  .proof { padding: 12px 20px; gap: 16px; }
  .ps { display: none; }
  .section { padding: 60px 20px; }
  .grid-3, .grid-4, .ai-grid, .about-grid, .countries-grid { grid-template-columns: 1fr; }
  .cgrid { grid-template-columns: repeat(3, 1fr); }
  .sh { flex-direction: column; align-items: flex-start; }
  .footer { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 0; }
  .cta-section { padding: 60px 20px; }
}
