:root {
  /* Colors */
  --primary-color: #1bb7d0;
  --primary-dark: #149cb2;
  --secondary-color: #ffd613;
  --secondary-dark: #e6c010;
  --text-main: #2d3436;
  --text-light: #636e72;
  --bg-body: #f7f9fc;
  --white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1bb7d0 0%, #0e8fa3 100%);
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );

  /* Typography */
  --font-main: "Vazirmatn", sans-serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --border-radius: 1.5rem;
  --border-radius-sm: 0.75rem;

  /* Effects */
  --shadow-soft: 0 10px 30px rgba(27, 183, 208, 0.15);
  --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(27, 183, 208, 0.15),
    0 10px 10px -5px rgba(27, 183, 208, 0.04);
  --shadow-float: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: 1px solid rgba(255, 255, 255, 0.9);
  --backdrop-blur: blur(12px);
}

address,
blockquote,
dl,
fieldset,
ol,
p,
pre,
table,
ul {
  text-align: justify;
}

#page-header {
  backdrop-filter: blur(10px);
}

#page-header .level_1 {
  background: #fff;
}

.sty-cta {
  padding: 0 !important;
}

.sty-cta-box {
  border-radius: 1.5rem;
  padding: 3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.cta-box-1 {
  background-color: #b1e6ef;
}

.cta-box-2 {
  background-color: #ffeea2;
}
.sty-cta-box .cta-text {
  position: relative;
  z-index: 2;
}
.sty-cta-box .cta-text h2 {
  color: #625f4a;
}
.sty-cta-box .cta-text p {
  text-align: center;
  color: #5c5a4f;
}

.sty-cta-box .big-icon {
  position: absolute;
  font-size: 7.5rem;
  color: rgba(255, 255, 255, 0.35);
  left: 0px;
  bottom: 10px;
  z-index: 1;
}

#page-footer .sty-footer-top {
  background-color: #ebf2f3;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
}

#page-footer .footer-copyright {
  padding-bottom: 1.5rem;
  border-top: 2px solid #ddd;
  padding-top: 1.5rem;
  background: #fff;
}

.footer-logo {
  max-width: 160px;
  height: auto;
}

.footer-bio {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--secondary-color); /* رنگ برند شما */
  border-color: var(--secondary-color);
  color: #000;
}

/* ستون دوم و سوم: تیترها */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  color: #000;
}

/* لینک‌ها و لیست‌ها */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  padding-right: 5px;
}
