@font-face {
  font-family: "Gulf";
  src: url("/fonts/gulf-bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Gulf";
  src: url("/fonts/gulf-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
ul {
  padding-inline-start: 10px;
}
.ar {
  font-family: "Gulf", "Montserrat";
  direction: rtl;
}
.en {
  font-family: "Montserrat", "Gulf";
  direction: ltr;
}
.rounded {
  border-radius: 20px;
}
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.navbar-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .btn {
  padding: 8px 20px;
  color: #333;
  border: 1px dashed #eaeaea;
  text-decoration: none;
  border-radius: 28px;
  display: inline-block;
  transition: all 0.3s ease;
}
.navbar .btn-primary {
  background: #39aae1;
  color: white;
}
.navbar .btn-primary:hover {
  background: #2b8fc1;
  transform: translateY(-2px);
}
.navbar .btn:hover {
  background: #333;
  color: #fff;
}
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  text-wrap: nowrap;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: #39aae1;
  color: white;
}
.btn-primary:hover {
  background: #2b8fc1;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: #39aae1;
  border-color: #39aae1;
}
.btn-secondary:hover {
  background: #39aae1;
  color: white;
  transform: translateY(-2px);
}
.hero-bg {
  filter: brightness(0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/tvbox-render.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 1;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23667eea" opacity="0.3"/><circle cx="20" cy="20" r="1" fill="%23764ba2" opacity="0.2"/><circle cx="80" cy="30" r="1.5" fill="%23667eea" opacity="0.3"/></svg>');
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
  position: relative;
  width: 100%;
}
.container.fluid {
  max-width: 100%;
  padding: 8px;
}
h1 {
  font-weight: 700;
  font-size: 2rem;
}
h2 {
  font-weight: 700;
  font-size: 1.5rem;
}
h3 {
  font-weight: 700;
  font-size: 1.5rem;
}
p {
  font-size: 1rem;
}
a {
  color: #39aae1;
  text-decoration-line: none;
}
.button:hover,
.button:focus {
  background-color: #2b8fc1;
  text-decoration: none;
}
button:hover,
button:focus {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin: 30px 0;
  border: 1px dashed #333;
  position: relative;
  overflow: hidden;
}
.card-body {
  flex: 1;
}
.card-has-append {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.card-append {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-append-img {
  border-radius: 50%;
}
.card h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.en .card h2::after {
  left: 0;
}
.ar .card h2::after {
  right: 0;
}
.card h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #39aae1, #2d8bc0);
  border-radius: 2px;
}
.card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.card a {
  color: #39aae1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.card a:hover {
  color: #2d8bc0;
  text-decoration: underline;
}
.card-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .card-has-append {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .card-append {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .card {
    padding: 25px;
    margin: 20px 0;
  }
  .card h2 {
    font-size: 1.5rem;
  }
}
.cta-card {
  border: 1px dashed #333;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 200px;
  justify-content: center;
}
.cta-btn-primary {
  background: #1877f2;
  color: white;
}
.cta-btn-primary:hover {
  background: #166fe5;
  transform: translateY(-2px);
}
.cta-btn-secondary {
  color: #333;
  border: 2px solid #333;
  backdrop-filter: blur(10px);
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.btn.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  margin-right: 10px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn.btn-whatsapp:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
}
.btn.btn-viber {
  text-decoration: none;
  background: #7360f2;
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn.btn-viber:hover {
  background: #5a4bc4;
  color: white;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .btn.btn-whatsapp,
  .btn.btn-viber {
    margin: 5px 0;
    text-align: center;
    justify-content: center;
  }
}
.gallery-section {
  padding: 80px 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}
.gallery-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: black;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}
.product-hero {
  min-height: 700px;
}
.product-badge {
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px dashed #333;
}
.product-tagline {
  color: #333;
  opacity: 0.8;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.features-section {
  padding: 80px 0;
}
.features-grid {
}
.features-content {
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
  }
}
.feature-item {
  display: flex;
  align-items: center;
  border-style: dashed;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px dashed #3333335b;
}
.feature-item:hover {
  transform: translateY(-2px);
}
.feature-icon {
  background: #166fe5;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.feature-text {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.5;
  font-weight: 600;
}
.features-image {
  text-align: center;
}
.product-render {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}
.benefits-section {
  padding: 80px 0;
  background: white;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px dashed #e9ecef;
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: block;
  color: #39aae1;
  font-weight: bold;
}
.benefit-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.specs-section {
  padding: 80px 0;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.spec-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #39aae1;
  transition: transform 0.3s ease;
}
.spec-item:hover {
  transform: translateX(5px);
}
.spec-text {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}
.cta-section {
  padding: 80px 0;
}
.contact-info {
  background: rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
.contact-info p {
  margin: 5px 0;
  color: #666;
}
.footer {
  border-top: 1px dashed #e0e0e0;
  background: #fcfcfc;
  color: #333;
  padding: 40px 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
}
.footer-info p {
  margin: 0;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .product-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .product-tagline {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .feature-item {
    padding: 12px;
  }
  .feature-text {
    font-size: 1rem;
  }
  .benefit-card {
    padding: 20px;
  }
  .benefit-text {
    font-size: 1rem;
  }
  .gallery-item:nth-child(7) {
    display: none !important;
  }
  .gallery-item:nth-child(8) {
    display: none !important;
  }
  .gallery-item:nth-child(9) {
    display: none !important;
  }
  .gallery-item:nth-child(10) {
    display: none !important;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-item,
.benefit-card,
.spec-item {
  animation: fadeInUp 0.6s ease forwards;
}
.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}
.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
  animation-delay: 0.4s;
}
.benefit-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-render {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.3s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.btn:focus,
.cta-btn:focus,
.feature-item:focus,
.benefit-card:focus {
  outline: 2px solid #39aae1;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #39aae1;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
}
.skip-link:focus {
  top: 6px;
}
.loading {
  opacity: 0.7;
  pointer-events: none;
}
@media print {
  .hero-buttons,
  .cta-buttons,
  .navbar {
    display: none !important;
  }
  .hero {
    background: white !important;
    color: black !important;
  }
  .hero-title,
  .hero-subtitle {
    color: black !important;
  }
}
.gallery-image {
  will-change: transform;
}
.feature-item,
.benefit-card,
.spec-item {
  will-change: transform;
}
.hero {
  contain: layout style paint;
}
.hero-content {
  contain: layout style;
}
@media (prefers-reduced-motion: no-preference) {
  .feature-item,
  .benefit-card,
  .spec-item {
    animation: fadeInUp 0.6s ease forwards;
  }
  .product-render {
    animation: fadeIn 0.8s ease forwards 0.3s;
  }
}
img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width) / attr(height);
}
@container (min-width: 400px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-icon {
  margin-inline-end: 15px;
}
.product-hero {
}
.featured-product-section {
  padding: 80px 0;
}
.ar .featured-product-image img {
  margin-right: auto;
  display: block;
}
.en .featured-product-image img {
  margin-left: auto;
  display: block;
}
.featured-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin: 0 auto;
  z-index: 1000;
  position: relative;
}
.featured-product-title {
  font-size: 1.2rem;
  color: #39aae1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.featured-product-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}
.featured-product-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.featured-product-actions {
  margin-top: 30px;
}
.featured-product-image {
  text-align: center;
}
.featured-product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}
.store-info-section {
  padding: 80px 0;
  background: white;
}
.about-section {
  padding: 80px 0;
}
.social-cta-section {
  padding: 20px 0;
}
.location-section {
  padding: 80px 0;
  padding-bottom: 0;
  background: white;
}
.location-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
.right-shapes {
  position: absolute;
  right: 0;
  z-index: -1;
}
.left-shapes {
  position: absolute;
  left: 0;
  z-index: -1;
}
.map-container {
  margin: 0 auto;
  overflow: hidden;
}
.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}
.hero .hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}
.hero .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .right-shapes,
  .left-shapes {
    opacity: 0.1;
  }
  .featured-product-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 10px;
  }
  .featured-product-name {
    font-size: 2rem;
  }
  .hero .hero-title {
    font-size: 2.5rem;
  }
  .hero .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .location-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .featured-product-card {
    padding: 20px;
  }
  .featured-product-name {
    font-size: 1.8rem;
  }
  .featured-product-description {
    font-size: 1rem;
  }
  .hero .hero-title {
    font-size: 2rem;
  }
  .hero .hero-subtitle {
    font-size: 1rem;
  }
  .location-title {
    font-size: 1.8rem;
  }
}
.featured-product-content {
  animation: fadeInLeft 0.8s ease forwards 0.2s;
  opacity: 0;
}
.featured-product-image {
  animation: fadeInRight 0.8s ease forwards 0.4s;
  opacity: 0;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.ar .featured-product-content {
  animation: fadeInRight 0.8s ease forwards 0.2s;
}
.ar .featured-product-image {
  animation: fadeInLeft 0.8s ease forwards 0.4s;
}
