/* =======================
   RESET & BASE
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.7;
}

/* =======================
   TOP INFO BAR
======================= */
.top-alert {
   
    top: 0;
    width: 100%;
    background: #eef2ff;
    color: #1e1b4b;
    z-index: 1100;
    border-bottom: 1px solid #c7d2fe;
}

.top-alert-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left {
    font-weight: 600;
    white-space: nowrap;
}

.top-center {
    flex: 1;
    text-align: center;
}

.top-call-btn {
    background: #4f46e5;
    color: white;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* =======================
   NAVBAR
======================= */
.navbar {
    
    top: 56px;
    width: 100%;
    background: rgba(15,15,15,0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

nav a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: #ef4444;
}

.nav-btn {
    padding: 8px 16px;
    border: 1px solid #ef4444;
    border-radius: 6px;
}

/* =======================
   HERO
======================= */
/* HERO SECTION FIX */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("https://ichef.bbci.co.uk/news/976/cpsprodpb/C4CA/production/_129487305_74e00bd5a0426bc00682ebe12cf8b357f9c2466f.jpg");
  background-size: cover;
  background-position: center;
}


/* HERO CONTENT */
.hero-content {
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

/* HERO TEXT */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


/* =======================
   BUTTONS
======================= */
.btn {
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn.danger {
    background: #dc2626;
    color: white;
}

.btn.outline {
    border: 2px solid white;
    color: white;
}

/* =======================
   GENERAL SECTIONS
======================= */
.section {
    padding: 100px 24px;
    background: white;
}

.section.gray {
    background: #f9fafb;
}

.section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.section p.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #4b5563;
}

/* =======================
   CARDS
======================= */
.grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 14px;
    color: #991b1b;
}

.card p {
    color: #4b5563;
}

/* =======================
   PAGE WRAPPER
======================= */
.page {
    max-width: 1000px;
    margin: 190px auto 100px;
    padding: 60px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* =======================
   CONTACT
======================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.contact-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 26px;
    border-radius: 8px;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.telegram-logo {
    width: 64px;
    margin-bottom: 16px;
}

/* =======================
   FOOTER
======================= */
footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 40px 20px;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .navbar { top: 88px; }
    .top-alert-container { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.3rem; }
}

/* =======================
ABOUT PAGE
======================= */
.about-main {
    max-width: 1200px;
    margin: 190px auto 120px;
    padding: 0 24px;
}

/* HERO */
.about-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 18px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #4b5563;
}

/* INTRO */
.about-intro {
    max-width: 850px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    color: #374151;
    text-align: center;
}

/* CARDS */
.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.about-card h3 {
    margin-bottom: 14px;
    color: #111827;
}

/* SECTIONS */
.about-section {
    margin-bottom: 100px;
    text-align: center;
}

.about-section.gray {
    background: #f9fafb;
    padding: 80px 40px;
    border-radius: 20px;
}

.about-section h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

/* HOW WE WORK */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.how-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.value-box {
    background: #f9fafb;
    padding: 28px;
    border-radius: 16px;
}

.value-box h4 {
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
}

/* =======================
   BEAUTIFUL TEAM PAGE
======================= */
.team-main {
    max-width: 1200px;
    margin: 190px auto 120px;
    padding: 0 24px;
}

/* HERO */
.team-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.team-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.team-hero p {
    font-size: 1.2rem;
    color: #4b5563;
}

/* INTRO */
.team-intro {
    max-width: 850px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    text-align: center;
    color: #374151;
}

/* TEAM GRID */
.team-grid-beautiful {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.team-card-beautiful {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
}

.team-card-beautiful img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-beautiful h3 {
    margin: 24px 20px 6px;
}

.team-card-beautiful span {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.team-card-beautiful p {
    padding: 0 24px 30px;
    color: #4b5563;
}

/* VALUES */
.team-values {
    text-align: center;
}

.team-values h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-value {
    background: #f9fafb;
    padding: 28px;
    border-radius: 16px;
}

.team-value h4 {
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2.2rem;
    }
}


/* =======================
   BEAUTIFUL CONTACT PAGE
======================= */
.contact-main {
    max-width: 1200px;
    margin: 190px auto 120px;
    padding: 0 24px;
}

/* HERO */
.contact-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4b5563;
}

/* INTRO */
.contact-intro {
    max-width: 850px;
    margin: 0 auto 80px;
    font-size: 1.1rem;
    text-align: center;
    color: #374151;
}

/* GRID */
.contact-grid-beautiful {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.contact-card-beautiful {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-card-beautiful h3 {
    margin-bottom: 6px;
}

.contact-card-beautiful span {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 14px;
}

.contact-card-beautiful p {
    color: #4b5563;
    margin-bottom: 22px;
}

/* ICONS */
.contact-icon {
    width: 64px;
    margin-bottom: 16px;
}

.contact-icon-text {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* BUTTONS */
.contact-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-btn:hover {
    background: #4338ca;
}

/* TELEGRAM */
.telegram {
    border: 2px solid #229ED9;
}

.telegram-btn {
    background: #229ED9;
}

.telegram-btn:hover {
    background: #1c8dc7;
}

.contact-handle {
    margin-top: 14px;
    font-weight: 600;
    color: #374151;
}

/* EMAIL */
.email {
    border: 2px solid #10b981;
}

.email-btn {
    background: #10b981;
}

.email-btn:hover {
    background: #059669;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

/* =======================
   PARTNERS
======================= */
/* PARTNERS SECTION */
.partners-section {
  background: #ffffff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.partner-card {
  background: #f9fafb;
  padding: 28px;
  border-radius: 14px;
  border-left: 5px solid #4338ca;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.partner-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #111827;
}

.partner-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.partner-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  background: #e0e7ff;
  color: #3730a3;
}

/* =======================
   NEWS
======================= */
/* NEWS SECTION */
.news-section {
  background: #f9fafb;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.news-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.news-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 10px;
}

.news-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #111827;
}

.news-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.news-tag {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  background: #eef2ff;
  color: #4338ca;
}



/* SHOW ON HOVER */
.lang-dropdown:hover .lang-menu {
    display: block;
}

/* CONTACT ICONS */
.contact-card {
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

/* Icon colors */
.contact-icon.telegram {
  background: #229ED9;
}

.contact-icon.phone {
  background: #28a745;
}

.contact-icon.email {
  background: #6c63ff;
}

.contact-handle {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  opacity: 0.8;
}
/* FIELD OPERATIONS */
.field-section {
  background: #f9fafb;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.field-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  border-left: 5px solid #0284c7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.field-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.field-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.field-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}

.field-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  background: #e0f2fe;
  color: #0369a1;
}




/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */

@media (max-width: 1024px) {
  .nav-container {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {

  /* TOP BAR */
  .top-alert-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* NAVBAR */
  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .navbar a {
    font-size: 0.95rem;
  }

  /* HERO */
  .hero {
    min-height: 80vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  /* SECTIONS */
  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  /* GRIDS */
  .grid,
  .photo-grid,
  .news-grid,
  .partners-grid,
  .field-grid,
  .contact-grid-beautiful,
  .team-grid-beautiful {
    grid-template-columns: 1fr;
  }

  /* CARDS */
  .card,
  .news-card,
  .partner-card,
  .field-card {
    padding: 22px;
  }

  /* CONTACT ICONS */
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  /* FOOTER */
  footer {
    font-size: 0.85rem;
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .navbar a {
    font-size: 0.9rem;
  }
}


/* =========================
   TOP ALERT + NAVBAR FIX
   ========================= */

.top-alert {

  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}



/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {

  .top-alert-container {
    padding: 8px 12px;
  }


}



/* =========================
   MOBILE HEADER COMPRESSION
   ========================= */

@media (max-width: 768px) {

  /* TOP ALERT — make it compact */
  .top-alert {
    padding: 0;
  }

  .top-alert-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .top-alert-container div {
    white-space: nowrap;
  }

  .top-call-btn {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  /* NAVBAR — reduce height */
  .navbar {
    padding: 8px 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 6px;
  }

  .navbar nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar a {
    font-size: 0.85rem;
    padding: 4px 6px;
  }

  .logo {
    font-size: 1.2rem;
  }
}

/* =========================
   MOBILE FIX — SIMPLE & CORRECT
   ========================= */

@media (max-width: 768px) {
  .top-alert {
    display: none;
  }
}


/* =========================
   MOBILE HEADER FIX (FINAL)
   ========================= */

@media (max-width: 768px) {

  /* Hide top alert on mobile */
  .top-alert {
    display: none;
  }

  /* Navbar stays at top */
  .navbar {

    top: 0;
    z-index: 100;
    background: #0b0b0b;
  }

 

  /* Navbar layout */
  .nav-container {
    flex-direction: column;
    padding: 12px 16px;
    gap: 8px;
  }

  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .navbar a {
    font-size: 0.9rem;
    padding: 6px 8px;
  }

  .logo {
    font-size: 1.2rem;
  }
}

/* =========================
   MOBILE HEADER + TOP ALERT
   ========================= */

@media (max-width: 768px) {

  /* Top alert visible and normal */
  .top-alert {
    position: relative;
    display: block;
  }

  .top-alert-container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  /* Navbar stays under top alert */
  .navbar {
    position: relative;
    background: #0b0b0b;
  }

  .nav-container {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .navbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .navbar a {
    font-size: 0.9rem;
    padding: 6px 8px;
  }

  .logo {
    font-size: 1.2rem;
  }

  /* IMPORTANT: hero must start AFTER header */
  .hero {
    padding-top: 0;
  }
}

















/* =======================
   LANGUAGE SWITCHER
======================= */

.lang-switcher {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid #374151;
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
}

.lang-current img,
.lang-menu img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #111827;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 999;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #e5e7eb;
  text-decoration: none;
}

.lang-menu a:hover {
  background: #1f2937;
}

.lang-switcher:hover .lang-menu {
  display: block;
}

/* Mobile safe */
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
  }
}

