/* =============================================
   کانون تبلیغاتی حنان — استایل اصلی
   ============================================= */

/* فونت محلی — بدون نیاز به اینترنت */
@font-face { font-family: "Vazirmatn"; src: url("../fonts/Vazirmatn-Light.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Vazirmatn"; src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Vazirmatn"; src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Vazirmatn"; src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Vazirmatn"; src: url("../fonts/Vazirmatn-Black.woff2") format("woff2"); font-weight: 900; font-display: swap; }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --dark: #0D0D0D;
  --dark2: #161616;
  --dark3: #1F1F1F;
  --light: #F5F2EC;
  --text-muted: #8A8A8A;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  direction: rtl;
  min-width: 0;
  width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
}

.logo a {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  animation: fadeDown 0.8s ease both;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-title .highlight {
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  animation: fadeUp 0.9s 0.6s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.8s ease both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeUp 0.9s 1s ease both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-primary.btn-full {
  width: 100%;
  padding: 1rem;
}

.btn-outline {
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(245, 242, 236, 0.25);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
section {
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.divider {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(201, 168, 76, 0.1);
  border: 1.5px solid rgba(201, 168, 76, 0.1);
}

.service-card {
  background: var(--dark2);
  padding: 2.5rem;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover {
  background: var(--dark3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-wrap {
  background: var(--dark2);
  padding: 6rem 0;
}

.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark3);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
}

.portfolio-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  transition: right 0.7s ease;
  pointer-events: none;
  z-index: 2;
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  z-index: 1;
}

.portfolio-item:hover::after {
  right: 150%;
}

.portfolio-item:first-child {
  grid-column: span 2;
  height: 280px;
}

.portfolio-item:not(:first-child) {
  height: 200px;
}

.port-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.5s;
}

.portfolio-item:hover .port-placeholder {
  transform: scale(1.05);
}

.port-icon {
  font-size: 2.5rem;
  opacity: 0.12;
}

.port-text {
  font-size: 0.75rem;
  opacity: 0.2;
  letter-spacing: 1px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.portfolio-info span {
  font-size: 0.75rem;
  color: var(--gold);
}

.portfolio-item img,
.portfolio-item video,
.honor-placeholder img,
.honor-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   HONORS
   ============================================= */
.honors-wrap {
  padding: 6rem 0;
}

.honors-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.honor-item {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.honor-item:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.honor-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.honor-icon {
  font-size: 3rem;
  opacity: 0.35;
}

.honor-info {
  padding: 1.25rem 1.5rem;
}

.honor-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.honor-info span {
  font-size: 0.75rem;
  color: var(--gold);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox.active .lightbox-content {
  animation: lightboxIn 0.45s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.lightbox-content {
  max-width: min(900px, 100%);
  width: 100%;
  text-align: center;
  transform: scale(0.92);
  opacity: 0;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.lightbox-media {
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: 4px;
}

.lightbox-empty {
  color: var(--text-muted);
  padding: 3rem 2rem;
  font-size: 0.9rem;
}

.lightbox-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.lightbox-caption span {
  font-size: 0.85rem;
  color: var(--gold);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  color: var(--light);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* =============================================
   PROCESS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.4), rgba(201, 168, 76, 0.4), transparent);
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
   TEAM
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.team-card.featured {
  border-color: rgba(201, 168, 76, 0.35);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.team-card.featured .team-avatar {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.1));
  border-color: var(--gold);
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.team-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-wrap {
  background: var(--dark2);
  padding: 6rem 0;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-inner-single {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.contact-link {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--light);
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--dark3);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #080808;
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* =============================================
   ANIMATIONS & SCROLL REVEAL
   ============================================= */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .navbar { padding: 1rem 1.5rem; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 105;
    padding: 5rem 2rem 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.25rem 3rem; min-height: auto; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; }
  .stat-num { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:first-child { grid-column: span 2; height: 220px; }
  .portfolio-item:not(:first-child) { height: 160px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem; }
  .portfolio-inner, .honors-inner { padding: 0 1.5rem; }
  .honors-wrap { padding: 4rem 0; }
  footer { padding: 2rem 1.5rem 1.25rem; flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child,
  .portfolio-item:not(:first-child) { grid-column: span 1; height: 200px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-buttons button { width: 100%; }
  .honors-grid { grid-template-columns: 1fr; }
  .honor-placeholder { height: 160px; }
  .lightbox { padding: 1rem; }
  .lightbox-close { top: 0.5rem; left: 0.5rem; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-wrap {
  background: var(--dark2);
  padding: 6rem 0;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
}

.video-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}

.video-label {
  background: rgba(13,13,13,0.85);
  color: var(--gold);
  font-size: 0.78rem;
  padding: 0.6rem 1rem;
  text-align: center;
  letter-spacing: 1px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem; }
}

/* =============================================
   CEO TEAM CARD
   ============================================= */
.team-card.ceo {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.07), var(--dark2));
  grid-column: span 1;
}

.team-avatar.ceo-avatar {
  background: linear-gradient(135deg, rgba(201,168,76,0.5), rgba(201,168,76,0.15));
  border-color: var(--gold);
  width: 84px;
  height: 84px;
  font-size: 1.6rem;
}

.team-card.ceo .team-role {
  font-size: 0.82rem;
  font-weight: 600;
}

/* =============================================
   PREMIUM EFFECTS
   ============================================= */

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  animation: pulse 1.5s ease infinite;
}

.loader-logo span { color: var(--gold); }

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: loaderSlide 1s ease infinite;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to left, var(--gold-light), var(--gold));
  z-index: 200;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  transition: width 0.1s linear;
}

/* Navbar scrolled */
.navbar.scrolled {
  padding: 0.75rem 3rem;
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-bottom-color: rgba(201,168,76,0.25);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 50;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}

body.cursor-ready .cursor-glow {
  opacity: 1;
}

/* Hero orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(201,168,76,0.15);
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(201,168,76,0.08);
  bottom: 20%;
  left: 10%;
  animation-delay: -4s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(232,213,163,0.06);
  top: 50%;
  left: 50%;
  animation-delay: -8s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.54s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: none;
}

/* 3D tilt cards */
.fx-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Buttons premium */
.btn-primary,
.btn-outline,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::after,
.btn-outline:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

/* Honor hover */
.honor-item {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s, box-shadow 0.4s;
}

.honor-item:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Process step glow */
.step-num {
  transition: box-shadow 0.4s, transform 0.4s;
}

.stagger-children.visible .step:hover .step-num {
  box-shadow: 0 0 24px rgba(201,168,76,0.35);
  transform: scale(1.08);
}

/* Video wrapper hover */
.video-wrapper {
  transition: transform 0.5s, box-shadow 0.5s;
}

.about-video:hover .video-wrapper {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.2);
}

/* Section divider pulse */
.divider {
  animation: dividerPulse 3s ease infinite;
}

/* Keyframes */
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes lightboxIn {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes dividerPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 12px rgba(201,168,76,0.4); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-loader { display: none; }
  .cursor-glow, .hero-particles { display: none; }
  .reveal, .stagger-children > * { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .navbar.scrolled { padding: 0.75rem 1.5rem; }
  .cursor-glow { display: none; }
}
