
/* ============================================================
   HAQQIMIZDA.CSS
   Page-specific styles for haqqimizda.html
   Extends style.css — uses same CSS variables (light/dark)
   ============================================================ */
 
/* ── HERO BANNER OVERRIDE
   Remove director photo, clean up hero banner
   ============================================================ */
.flame-banner-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 80px; /* navbar height */
}
 
@media (max-width: 768px) {
  .flame-banner-wrap { height: 300px; }
}
 
.flame-banner-img-track {
  position: absolute;
  inset: 0;
  will-change: transform;
}
 
.flame-banner-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  transform: translateY(0);
  transition: transform 0.05s linear;
}
 
.flame-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 58, 0.18) 0%,
    rgba(11, 31, 58, 0.38) 45%,
    rgba(11, 31, 58, 0.72) 100%
  );
}
.dark-mode .flame-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 58, .8) 0%,
    rgba(11, 31, 58, 0.6) 65%,
    rgba(11, 31, 58, .3) 100%
  );
}
 
.flame-banner-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.18) 100%);
}
 
.flame-banner-content {
  padding: 2.5rem 2rem 2.75rem;
  max-width: 1280px;
  margin:  auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.hq-hero-eyebrow {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
 
.hq-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
 
.flame-banner-line {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
 
.flame-banner-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
}
 
/* ── INTRO SECTION
   ============================================================ */
.hq-intro-section {
  background: var(--bg);
  padding: 5rem 0 0;
}
.section-title {
  color: var(--haqqimizda-title);
}
 
.hq-intro-header {
  margin-bottom: 3.5rem;
}
 
/* Missiya / Vizyon grid */
.hq-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
 
@media (max-width: 768px) {
  .hq-mv-grid { grid-template-columns: 1fr; }
}
 
.hq-mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
 
.hq-mv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
 
.hq-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}
 
.hq-mv-card:hover::before { opacity: 1; }
 
.hq-mv-card--accent::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
}
 
.hq-mv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
 
.hq-mv-icon-wrap i,
.hq-value-icon i,
.hq-badge-card i,
.hq-team-feats li i {
  display: inline-block !important;
  font-style: normal;
  line-height: 1;
}
 
/* .hq-mv-card--accent .hq-mv-icon-wrap {
  background: var(--gold-pale);
  color: var(--gold);
} */
 
.hq-mv-label {
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
 
.hq-mv-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.85;
}
 
/* ── VALUES BLOCK
   ============================================================ */
.hq-values-block {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
}
 
.hq-values-header {
  margin-bottom: 3rem;
}
 
.hq-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
 
@media (max-width: 1100px) {
  .hq-values-grid { grid-template-columns: repeat(3, 1fr); }
}
 
@media (max-width: 768px) {
  .hq-values-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 480px) {
  .hq-values-grid { grid-template-columns: 1fr; }
}
 
.hq-value-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: default;
}
 
.hq-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}
 
.hq-value-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
 
.hq-value-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
 
.hq-value-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.75;
}
 
/* ── TIMELINE SECTION
   ============================================================ */
.hq-timeline-section {
  background: var(--bg-section);
  padding: 5.5rem 0 6rem;
}
 
.hq-timeline-header {
  margin-bottom: 4rem;
}
 
.hq-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}
 
.hq-tl-item {
  display: flex;
  gap: 0;
  position: relative;
}
 
.hq-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  margin-right: 1.75rem;
}
 
.hq-tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-section);
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
 
.hq-tl-item:hover .hq-tl-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(200,146,42,0.25);
}
 
.hq-tl-dot--current {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}
 
.hq-tl-item:hover .hq-tl-dot--current {
  box-shadow: 0 0 0 4px rgba(27,66,128,0.25);
}
 
.hq-tl-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  min-height: 2.5rem;
  margin-top: 2px;
}
 
.hq-tl-body {
  padding-bottom: 2.5rem;
  flex: 1;
}
 
.hq-tl-item:last-child .hq-tl-body {
  padding-bottom: 0;
}
 
.hq-tl-year {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
 
.hq-tl-item--current .hq-tl-year {
  color: var(--accent);
  background: var(--accent-light);
}
 
.hq-tl-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
 
.hq-tl-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.85;
}
 
/* ── STATS STRIP
   ============================================================ */
.hq-stats-section {
  background: var(--navy-dark);
  padding: 3.5rem 0;
}
 
.dark-mode .hq-stats-section {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
 
.hq-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
 
@media (max-width: 768px) {
  .hq-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
 
.hq-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
 
.hq-stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.03em;
}
 
.hq-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
 
/* ── TEAM / EKSPERT SECTION
   ============================================================ */
.hq-team-section {
  background: var(--bg);
  padding: 5.5rem 0 6rem;
}
 
.hq-team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
 
@media (max-width: 960px) {
  .hq-team-inner { grid-template-columns: 1fr; gap: 3rem; }
}
 
.hq-team-feats {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
 
.hq-team-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}
 
.hq-team-feats li i {
  color: var(--gold);
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}
 
.hq-team-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
 
.hq-badge-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
 
.hq-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
 
.hq-badge-card i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
 
.hq-badge-card span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
}
 
.hq-badge-card span small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}
 
/* ── RESPONSIVE: Mobile Nav offsets
   ============================================================ */
@media (max-width: 992px) {
  .flame-banner-content { padding-bottom: 2rem; }
}
 
@media (max-width: 640px) {
  .hq-badge-card { padding: 1.1rem 1rem; }
  .hq-mv-card { padding: 1.75rem 1.25rem; }
  .hq-value-card { padding: 1.4rem 1.1rem; }
}
/* ==========================================
   BİZ KİMİK? — TELEFON FORMAT FIX
   "Şirkət haqqında" hissəsi kimi sola düzüləcək
   ========================================== */

@media (max-width: 768px) {

  .hq-intro-header {
    padding: 0 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left !important;
  }

  .hq-intro-header .section-eyebrow {
    margin-left: 0 !important;
    margin-top: 40px !important;
    display: inline-block;
    text-align: left !important;
  }

  .hq-intro-header .section-desc {
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
  }

  .hq-intro-header .section-desc p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: left !important;
    margin-bottom: 1rem;
  }

  .company-name {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    line-height: 1.7;
    text-align: left !important;
    margin-top: 1.5rem;
    padding: 0;
    color: var(--gold);
  }

}