.elementor-703 .elementor-element.elementor-element-3c38a16{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e15d062 *//* =====================================
   Glass Label Page - Standalone CSS
   Brand: Shabrang Amir
===================================== */

/* ---------- Root Variables ---------- */
:root {
  --dark-blue: #1C1A52;
  --purple: #4B32FF;
  --gold: #D9C79A;
  --orange: #FF8A00;
  --text: #1F2933;
  --muted: #6B7280;
  --bg-light: #F9FAFB;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(0,0,0,0.08);
  --transition: all .3s ease;
}

/* ---------- Base ---------- */
#glass-label-page {
  direction: rtl;
  font-family: "Vazirmatn", IRANSans, Tahoma, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

.gl-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* =====================================
   HERO
===================================== */
.gl-hero {
  background: linear-gradient(135deg, var(--dark-blue), var(--purple));
  padding: 110px 20px 95px;
  text-align: center;
  border-radius: 0 0 48px 48px;
  box-shadow: inset 0 -40px 80px rgba(0,0,0,0.25);
}

.gl-hero h1 {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.4;
}

.gl-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* ---------- Buttons ---------- */
.gl-btn-primary,
.gl-btn-outline {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 48px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  margin: 6px;
}

/* Primary */
.gl-btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(255,138,0,0.25);
}

.gl-btn-primary:hover {
  background: #e67700;
  transform: translateY(-4px);
}

/* Outline */
.gl-btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.gl-btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* =====================================
   FEATURES
===================================== */
.gl-section {
  background: var(--bg-light);
  padding: 90px 0;
}

.gl-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.gl-feature-box {
  background: var(--white);
  padding: 38px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.gl-feature-box::before {
  content: "";
  width: 36px;
  height: 4px;
  background: var(--gold);
  display: block;
  margin: 0 auto 18px;
  border-radius: 3px;
}

.gl-feature-box h3 {
  color: var(--dark-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gl-feature-box {
  color: var(--muted);
  font-size: 1rem;
}

.gl-feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(75,50,255,0.12);
}

/* =====================================
   CTA ORDER
===================================== */
.gl-cta-section {
  background: var(--dark-blue);
  color: var(--white);
  padding: 95px 20px;
  text-align: center;
}

.gl-cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.gl-cta-box h2 {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.gl-cta-box p,
.gl-cta-box {
  font-size: 1.1rem;
}

.gl-cta-actions {
  margin-top: 30px;
}

/* =====================================
   CONTACT INFO FOOTER
===================================== */
.gl-contact-section {
  background-color: #0f172a;
  margin-top: 64px;
  padding: 40px 20px;
  color: #e5e7eb;
  border-radius: 0 0 22px 22px;
}

.gl-contact-section .gl-container {
  width: min(900px, 96%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  line-height: 1.9;
}

.gl-contact-item {
  font-size: 0.95rem;
}

.gl-contact-item strong {
  color: var(--gold);
  font-weight: 700;
  margin-left: 6px;
}

.gl-contact-item .separator {
  margin: 0 8px;
  color: #9ca3af;
}

.gl-contact-item a {
  color: var(--purple);
  text-decoration: none;
  border-bottom: 1px dotted rgba(75,50,255,0.5);
  transition: var(--transition);
}

.gl-contact-item a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* =====================================
   Responsive
===================================== */
@media (max-width: 768px) {
  .gl-hero {
    padding: 70px 16px 60px;
  }
  .gl-feature-box {
    padding: 28px 20px;
  }
  .gl-btn-primary,
  .gl-btn-outline {
    width: 100%;
    max-width: 320px;
  }
  .gl-contact-item {
    font-size: 0.9rem;
  }
}/* End custom CSS */