*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
}
body.dark-mode {
  background-color: #112022;
  color: #ffffff;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

.site-footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: #20d3ee;
  transition: color 250ms ease;
}
a:hover {
  text-decoration: none;
  color: #67e8f9;
}
body.dark-mode a {
  color: #a5f3fc;
}
body.dark-mode a:hover {
  color: #20d3ee;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: #20d3ee;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  clip: auto;
  white-space: normal;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background-color: #20d3ee;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #1a1a1a;
}
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #ffffff;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, #20d3ee, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: #9ca3af;
}
body.dark-mode .text-muted {
  color: #6b7280;
}

.text-secondary {
  color: #4b5563;
}
body.dark-mode .text-secondary {
  color: #9ca3af;
}

.link-primary {
  color: #20d3ee;
}
.link-primary:hover {
  color: #67e8f9;
}

.site-footer {
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
}
body.dark-mode .site-footer {
  background: #152629;
  border-top-color: #234348;
}

.footer-logo-text {
  color: #1a1a1a;
  text-decoration: none;
}
body.dark-mode .footer-logo-text {
  color: #ffffff;
}

.footer-description {
  font-size: 0.875rem;
  max-width: 300px;
}

.footer-social .social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #4b5563;
  transition: all 250ms ease;
}
.footer-social .social-link:hover {
  background: #20d3ee;
  border-color: #20d3ee;
  color: #112022;
}
body.dark-mode .footer-social .social-link {
  background: #1a2c30;
  border-color: #234348;
  color: #9ca3af;
}
body.dark-mode .footer-social .social-link:hover {
  background: #20d3ee;
  border-color: #20d3ee;
  color: #112022;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.05em;
}
body.dark-mode .footer-heading {
  color: #6b7280;
}

.footer-link {
  color: #4b5563;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 250ms ease;
}
.footer-link:hover {
  color: #1a1a1a;
}
body.dark-mode .footer-link {
  color: #9ca3af;
}
body.dark-mode .footer-link:hover {
  color: #ffffff;
}

.footer-legal a:hover {
  color: #1a1a1a;
}
body.dark-mode .footer-legal a:hover {
  color: #ffffff;
}

[dir=rtl] .site-footer,
.rtl .site-footer {
  text-align: right;
}
[dir=rtl] .site-footer .row,
.rtl .site-footer .row {
  flex-direction: row-reverse;
}
[dir=rtl] .footer-social,
.rtl .footer-social {
  justify-content: flex-start;
}
[dir=rtl] .footer-bottom,
.rtl .footer-bottom {
  flex-direction: row-reverse;
}
[dir=rtl] .footer-legal,
.rtl .footer-legal {
  flex-direction: row-reverse;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 250ms ease;
  background: #20d3ee;
  color: #112022;
}
.btn-primary:focus {
  outline: 2px solid #20d3ee;
  outline-offset: 2px;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary:hover:not(:disabled) {
  background: #67e8f9;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 250ms ease;
  background: linear-gradient(135deg, #20d3ee, #f97316);
  color: #112022;
  border: none;
}
.btn-gradient:focus {
  outline: 2px solid #20d3ee;
  outline-offset: 2px;
}
.btn-gradient:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-gradient:hover:not(:disabled) {
  background: linear-gradient(135deg, #67e8f9, #fb923c);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #4b5563;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 250ms ease;
}
.btn-outline:hover {
  border-color: #20d3ee;
  color: #20d3ee;
}
body.dark-mode .btn-outline {
  border-color: #234348;
  color: #9ca3af;
}
body.dark-mode .btn-outline:hover {
  border-color: #20d3ee;
  color: #20d3ee;
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  color: #9ca3af;
  cursor: pointer;
  transition: all 250ms ease;
}
.btn-icon:hover {
  border-color: #20d3ee;
  color: #20d3ee;
}
body.dark-mode .btn-icon {
  border-color: #234348;
  color: #6b7280;
}
body.dark-mode .btn-icon:hover {
  border-color: #20d3ee;
  color: #20d3ee;
}

.card,
.presszone-card {
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 250ms ease;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover,
.presszone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
body.dark-mode .card,
body.dark-mode .presszone-card {
  background-color: #1a2c30;
  border-color: #234348;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 250ms ease;
}
.stat-card:hover {
  border-color: #d1d5db;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
body.dark-mode .stat-card {
  background: #1a2c30;
  border-color: #234348;
}
body.dark-mode .stat-card:hover {
  border-color: #2c555b;
}

.stat-icon {
  font-size: 1.5rem;
  color: #20d3ee;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
body.dark-mode .stat-value {
  color: #ffffff;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 400;
  color: #9ca3af;
}
body.dark-mode .stat-suffix {
  color: #6b7280;
}

.stat-label {
  font-size: 0.875rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 250ms ease;
}
.testimonial-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
body.dark-mode .testimonial-card {
  background: #1a2c30;
  border-color: #234348;
}
body.dark-mode .testimonial-card:hover {
  border-color: #2c555b;
}

.testimonial-rating i {
  font-size: 0.875rem;
  margin-right: 0.125rem;
}
[dir=rtl] .testimonial-rating i, .rtl .testimonial-rating i {
  margin-right: 0;
  margin-left: 0.125rem;
}

.testimonial-text {
  color: #4b5563;
  line-height: 1.7;
  font-style: italic;
}
body.dark-mode .testimonial-text {
  color: #9ca3af;
}

.author-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: #9ca3af;
  font-size: 1.25rem;
}
body.dark-mode .avatar-placeholder {
  background: #1a2c30;
  color: #6b7280;
}

.author-name {
  color: #1a1a1a;
}
body.dark-mode .author-name {
  color: #ffffff;
}

[dir=rtl],
.rtl {
  text-align: right;
  direction: rtl;
}
[dir=rtl] .navbar-nav,
.rtl .navbar-nav {
  padding-right: 0;
  padding-left: inherit;
}
[dir=rtl] .navbar-brand,
.rtl .navbar-brand {
  margin-left: 1rem;
  margin-right: 0;
}
[dir=rtl] .dropdown-menu,
.rtl .dropdown-menu {
  text-align: right;
  left: auto;
  right: 0;
}
[dir=rtl] .dropdown-item,
.rtl .dropdown-item {
  text-align: right;
}
[dir=rtl] .nav,
.rtl .nav {
  padding-right: 0;
}
[dir=rtl] .breadcrumb-item + .breadcrumb-item::before,
.rtl .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: 0.5rem;
  padding-right: 0;
}
[dir=rtl] ul,
[dir=rtl] ol,
.rtl ul,
.rtl ol {
  padding-right: 2rem;
  padding-left: 0;
}
[dir=rtl] .form-check,
.rtl .form-check {
  padding-right: 1.5em;
  padding-left: 0;
}
[dir=rtl] .form-check-input,
.rtl .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}
[dir=rtl] .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.rtl .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-right: -1px;
  margin-left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: var(--bs-border-radius);
  border-bottom-left-radius: var(--bs-border-radius);
}
[dir=rtl] .input-group > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.rtl .input-group > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: var(--bs-border-radius);
  border-bottom-right-radius: var(--bs-border-radius);
}
[dir=rtl] .btn i,
[dir=rtl] .btn svg,
.rtl .btn i,
.rtl .btn svg {
  margin-left: 0.5rem;
  margin-right: 0;
}
[dir=rtl] .card-header,
[dir=rtl] .card-body,
[dir=rtl] .card-footer,
.rtl .card-header,
.rtl .card-body,
.rtl .card-footer {
  text-align: right;
}
[dir=rtl] .modal-header .btn-close,
.rtl .modal-header .btn-close {
  margin: -0.5rem auto -0.5rem -0.5rem;
}
[dir=rtl] .alert-dismissible,
.rtl .alert-dismissible {
  padding-right: 1rem;
  padding-left: 3rem;
}
[dir=rtl] .alert-dismissible .btn-close,
.rtl .alert-dismissible .btn-close {
  left: 0;
  right: auto;
}
[dir=rtl] .pagination,
.rtl .pagination {
  padding-right: 0;
}
[dir=rtl] .page-item:first-child .page-link,
.rtl .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: var(--bs-border-radius);
  border-bottom-right-radius: var(--bs-border-radius);
}
[dir=rtl] .page-item:last-child .page-link,
.rtl .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: var(--bs-border-radius);
  border-bottom-left-radius: var(--bs-border-radius);
}
[dir=rtl] .table,
.rtl .table {
  text-align: right;
}
[dir=rtl] .offcanvas-start,
.rtl .offcanvas-start {
  right: 0;
  left: auto;
  transform: translateX(100%);
}
[dir=rtl] .offcanvas-end,
.rtl .offcanvas-end {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}
[dir=rtl] .theme-toggle,
.rtl .theme-toggle {
  margin-right: auto;
  margin-left: 1rem;
}
[dir=rtl] .header-cta,
.rtl .header-cta {
  margin-right: 1rem;
  margin-left: 0;
}
[dir=rtl] .social-links li,
.rtl .social-links li {
  margin-left: 0.5rem;
  margin-right: 0;
}
[dir=rtl] .social-links li:first-child,
.rtl .social-links li:first-child {
  margin-right: 0;
}
[dir=rtl] .post-meta span + span::before,
.rtl .post-meta span + span::before {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=password],
[dir=rtl] input[type=search],
[dir=rtl] textarea,
.rtl input[type=text],
.rtl input[type=email],
.rtl input[type=password],
.rtl input[type=search],
.rtl textarea {
  text-align: right;
}
[dir=rtl] .search-form .search-field,
.rtl .search-form .search-field {
  padding-left: 1rem;
  padding-right: 3rem;
}
[dir=rtl] .search-form .search-submit,
.rtl .search-form .search-submit {
  left: auto;
  right: 0;
}
[dir=rtl] .comment-list,
.rtl .comment-list {
  padding-right: 0;
}
[dir=rtl] .comment-list .children,
.rtl .comment-list .children {
  padding-right: 2rem;
  padding-left: 0;
}
[dir=rtl] .comment-author .avatar,
.rtl .comment-author .avatar {
  float: right;
  margin-left: 1rem;
  margin-right: 0;
}
[dir=rtl] blockquote,
.rtl blockquote {
  border-left: none;
  border-right: 4px solid #20d3ee;
  padding-left: 0;
  padding-right: 1.5rem;
}
[dir=rtl] .widget ul,
.rtl .widget ul {
  padding-right: 0;
}
[dir=rtl] .widget li,
.rtl .widget li {
  text-align: right;
}
[dir=rtl] .float-start,
.rtl .float-start {
  float: right !important;
}
[dir=rtl] .float-end,
.rtl .float-end {
  float: left !important;
}
[dir=rtl] .text-start,
.rtl .text-start {
  text-align: right !important;
}
[dir=rtl] .text-end,
.rtl .text-end {
  text-align: left !important;
}

.hover-lift {
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #20d3ee, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
