/* Global Styles */
:root {
  --primary-color: #004080;
  --secondary-color: #0066cc;
  --accent-color: #ff6600;
  --background-color: #f9f9f9;
  --light-bg-color: #e6f2ff;
  --white-color: #ffffff;
  --dark-color: #333333;
  --light-gray: #f4f4f4;
  --medium-gray: #cccccc;
  --border-radius: 5px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  margin: 0;
  font-family: var(--font-family);
  direction: rtl;
  background-color: var(--background-color);
  color: var(--dark-color);
  line-height: 1.6;
}

a {
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: black;
  font-size: 1rem;
  position: relative;
  padding-bottom: 15px;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.primary-btn:hover {
  background-color: #e55c00;
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white-color);
  z-index: 1001;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.nav-menu li a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5em 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.nav-menu li a i {
  margin-left: 5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--accent-color);
}

/* Hero Section Styles */
.hero {
  position: relative;
  color: white;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: url("assets/images/hero.png") center center / cover no-repeat;
}

.hero-video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

#hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.fallback-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
}

.hero h1 .highlight {
  color: var(--white-color);
  font-weight: 700;
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-buttons .video-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-buttons .video-btn:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.hero-buttons .video-btn i {
  font-size: 1.2rem;
}

.hero-buttons .primary-btn {
  background: #4fc3f7;
  color: #1a237e;
  font-weight: 600;
}

.hero-buttons .secondary-btn {
  background: transparent;
  border: 2px solid #4fc3f7;
  color: #4fc3f7;
}

.hero-animation {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.system-animation {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Gallery Styles */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  aspect-ratio: 16/9;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Product Intro Styles */
.product-intro__content {
  display: flex;
  gap: 70px;
}

@media (max-width: 992px) {
  .product-intro__content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .product-intro__content {
    flex-direction: column;
    gap: 30px;
  }
}

.intro-content {
  flex: 2;
  display: flex;
  align-items: start;
  gap: 40px;
}

@media (max-width: 992px) {
  .intro-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    gap: 20px;
  }
}

.intro-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

.device-image {
  max-width: 60%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.intro-text {
  flex: 1;
  order: 1;
}

.intro-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Partners Section Styles */
.partners {
  background-color: var(--white-color);
  padding: 50px 0;
}

@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  -webkit-animation: 35s slide infinite linear;
  animation: 35s slide infinite linear;
  will-change: transform;
}

.logos-slide img {
  height: 75px;
  margin: 0 40px;
  vertical-align: middle;
}

/* Applications Section Styles */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.application-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.application-card:hover {
  transform: translateY(-5px);
}

.application-image {
  height: 200px;
  overflow: hidden;
}

.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.application-card:hover .application-image img {
  transform: scale(1.05);
}

.application-card h3 {
  padding: 1.5rem;
  margin: 0;
  color: #1a237e;
}

.application-card p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: #666;
}

/* Gallery Showcase - Instagram Story Style */
.gallery-showcase {
  background-color: var(--light-bg-color);
  padding: 70px 0;
}

.gallery-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.gallery-container {
  flex: 2;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding: 10px 5px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  place-items: center;
}

.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 20px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
}

.gallery-item.story-format {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 450px;
  width: 250px;
  min-width: 250px;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.gallery-item.story-format:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay,
.gallery-info {
  display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 80px 30px 30px;
    transition: 0.4s;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 1.2rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu li a {
    display: inline-block;
    width: 100%;
    padding: 0.7em;
    font-size: 1.1rem;
  }

  .product-intro__content {
    padding: 0 10px;
  }

  .benefits-container {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .benefits-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-intro__content {
    flex-direction: column;
  }

  .intro-text {
    order: 0;
    margin-bottom: 30px;
  }

  .gallery-container {
    order: 1;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    order: 1;
  }

  .logo {
    height: 40px;
  }

  .btn {
    padding: 0.6em 1.2em;
  }

  .hero {
    padding: 2rem 0;
  }

  section {
    padding: 40px 0;
  }

  .intro-content {
    flex-direction: column;
    gap: 30px;
  }

  .intro-image {
    order: 2;
  }

  .intro-text {
    order: 1;
  }
}

@media (max-width: 480px) {
  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

  section {
    padding: 30px 0;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    position: relative;
    width: 100%;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

  .gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px 20px;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-item.story-format {
    height: 380px;
    width: 200px;
    min-width: 200px;
  }

  .benefit {
    padding: 15px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .popup-content {
    width: 95%;
    height: 80vh;
    margin: 10vh auto;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero .subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .highlight-text {
    font-size: 1.1rem;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}
/* Benefits Section */
.benefits {
  background-color: var(--light-bg-color);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.benefit {
  padding: 20px;
  transition: var(--transition);
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.benefit:hover {
  transform: translateY(-10px);
}

.benefit-green {
  border: 2px solid #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
  color: #2e7d32;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.benefit-green .benefit-icon {
  background-color: #bfdfca;
  color: #0d3a0f;
}

.benefit h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.benefit-green h3 {
  color: #0d3a0f;
}

/* Features/Specs Section */
.features {
  background-color: var(--white-color);
}

.features-specs {
  background-color: var(--light-bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 25px;
}

@media (max-width: 992px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 10px;
  }

  .features-specs {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 576px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 5px;
  }

  .spec-item {
    padding: 15px;
    margin-bottom: 5px;
    max-width: 100%;
  }

  .spec-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .spec-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .spec-item p {
    font-size: 0.9rem;
  }

  .features {
    padding: 30px 0;
  }
}

/* Continue Features/Specs Section */
.spec-item {
  padding: 20px;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spec-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: var(--light-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.spec-item h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.pro-feature {
  border: 2px solid var(--accent-color);
  position: relative;
}

.pro-feature .spec-icon {
  background-color: var(--accent-color);
  color: var(--white-color);
}

/* Service Types / Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-card {
  background-color: var(--white-color);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.advantage-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Why Atlas Section */
.why-atlas {
  background-color: var(--white-color);
}

.why-atlas-content {
  margin-bottom: 40px;
}

.why-atlas-text p {
  margin-bottom: 15px;
  text-align: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-choose-card {
  background-color: var(--light-bg-color);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.why-choose-card:hover {
  transform: translateY(-10px);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white-color);
}

.why-choose-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  position: relative;
  color: var(--white-color);
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.cta-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: url("assets/images/hero.png") center center / cover no-repeat;
}

.cta-video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

#cta-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  background-color: var(--white-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 30px;
  }

  .info-item {
    margin-bottom: 20px;
    width: 45%;
  }
}

@media (max-width: 480px) {
  .info-item {
    width: 100%;
  }
}

.contact-info {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--accent-color);
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.contact-form {
  background-color: var(--light-bg-color);
  padding: 30px;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* Form Status Styles */
.form-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: var(--border-radius);
  display: none;
}

.form-status .loading {
  color: #2196f3;
}

.form-status .success {
  color: #4caf50;
}

.form-status .error {
  color: #f44336;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo .logo {
  margin-bottom: 15px;
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-right: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: inherit;
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 0 15px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #e55c00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn i {
  margin-right: 0;
}

/* Video Popup Styles */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  height: calc(100vh - 160px);
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 30px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1001;
}

.close-popup:hover {
  color: #ff4444;
}

.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    padding: 10px;
    height: calc(100vh - 160px);
  }
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
