@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #e63946;
  --primary-dark: #d62839;
  --secondary-color: #2e4156;
  --dark-blue: #1a2332;
  --light-gray: #f8f9fa;
  --text-dark: #1d3557;
  --text-light: #6c757d;
  --white: #ffffff;
  --transition: all 0.3s ease;

  --gradient-primary: linear-gradient(
    135deg,
    #d62839 0%,
    #e63946 50%,
    #ff6b7a 100%
  );
  --gradient-secondary: linear-gradient(135deg, #1a2332 0%, #2e4156 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #2e4156 100%);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.03) 0%,
    rgba(46, 65, 86, 0.03) 100%
  );
  --shadow-elegant: 0 10px 40px rgba(230, 57, 70, 0.15);
  --shadow-hover: 0 20px 60px rgba(230, 57, 70, 0.25);
  --shadow-card: 0 5px 20px rgba(46, 65, 86, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Poppins", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--scroll-width, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b7a);
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
  border-bottom: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  border-radius: 10%;
  height: 60px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.3));
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b7a);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

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

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

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--light-gray);
  padding: 0.3rem;
  border-radius: 25px;
  margin: 0 1rem;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.lang-btn:hover {
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary-color);
}

.lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body {
  text-align: right;
  font-family: "Cairo", "Poppins", sans-serif;
}

html[dir="rtl"] * {
  font-family: "Cairo", "Poppins", sans-serif;
}

html[dir="rtl"] .nav-menu {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-content {
  direction: rtl;
}

html[dir="rtl"] .product-category-overlay ul {
  text-align: right;
}

html[dir="rtl"] .product-category-overlay ul li {
  padding-right: 1.5rem;
  padding-left: 0;
}

html[dir="rtl"] .product-category-overlay ul li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .contact-content {
  direction: rtl;
}

html[dir="rtl"] .team-member {
  border-right: 4px solid var(--primary-color);
  border-left: none;
}

html[dir="rtl"] .footer-content {
  direction: rtl;
}

html[dir="rtl"] .fa,
html[dir="rtl"] .fas,
html[dir="rtl"] .fab,
html[dir="rtl"] .far,
html[dir="rtl"] .fa-solid,
html[dir="rtl"] .fa-regular,
html[dir="rtl"] .fa-brands,
html[dir="rtl"] i[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  display: inline-block !important;
}

html[dir="rtl"] .fa::before,
html[dir="rtl"] .fas::before,
html[dir="rtl"] .fab::before,
html[dir="rtl"] .far::before,
html[dir="rtl"] i[class*="fa-"]::before {
  font-family: inherit !important;
}

html[dir="rtl"] i {
  font-style: normal !important;
  display: inline-block !important;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.icon-float {
  position: absolute;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.1;
  transition: var(--transition);
  animation: floatIcon 15s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  75% {
    transform: translateY(20px) rotate(-5deg);
  }
}

.icon-1 {
  top: 15%;
  right: 10%;
  font-size: 4rem;
  color: var(--primary-color);
  animation: float 6s ease-in-out infinite;
}

.icon-2 {
  top: 25%;
  left: 8%;
  font-size: 3.5rem;
  color: var(--secondary-color);
  animation: float 7s ease-in-out infinite 0.5s;
}

.icon-3 {
  top: 60%;
  right: 15%;
  font-size: 3rem;
  color: var(--primary-color);
  animation: float 8s ease-in-out infinite 1s;
}

.icon-4 {
  bottom: 20%;
  left: 12%;
  font-size: 4.5rem;
  color: var(--secondary-color);
  animation: float 9s ease-in-out infinite 1.5s;
}

.icon-5 {
  top: 40%;
  left: 5%;
  font-size: 2.5rem;
  color: var(--primary-color);
  animation: float 7.5s ease-in-out infinite 2s;
}

.icon-6 {
  top: 50%;
  right: 8%;
  font-size: 3rem;
  color: var(--secondary-color);
  animation: float 6.5s ease-in-out infinite 2.5s;
}

.icon-7 {
  top: 70%;
  right: 25%;
  font-size: 2.8rem;
  color: var(--primary-color);
  animation: rotate 20s linear infinite;
}

.icon-8 {
  top: 10%;
  left: 25%;
  font-size: 2.5rem;
  color: var(--secondary-color);
  animation: float 8.5s ease-in-out infinite 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  padding: 4rem 2rem;
  animation: fadeInUp 1s ease;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-logo {
  display: none;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  position: relative;
  line-height: 1.3;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-experience {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
  background: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  display: inline-block;
  border: 2px solid var(--primary-color);
  letter-spacing: 1px;
  transition: var(--transition);
  color: var(--white);
}

.hero-experience:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.35);
  background: #d62839;
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 4px 15px rgba(46, 65, 86, 0.15);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 65, 86, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 5px 10px rgba(230, 57, 70, 0.2));
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
}

.mouse::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 0 auto 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--light-gray);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.1),
    rgba(46, 65, 86, 0.1)
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.about-image:hover::before {
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.about-image:hover img {
  transform: scale(1.08);
}

.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, white 0%, rgba(248, 249, 250, 0.8) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(230, 57, 70, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-primary);
  opacity: 0;
  transform: rotate(45deg);
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.products {
  background: var(--white);
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.product-category {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--light-gray);
  cursor: pointer;
}

.product-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(30, 67, 86, 0.95) 0%,
    rgba(30, 67, 86, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.product-category:hover .product-category-overlay {
  opacity: 1;
}

.product-category:hover img {
  transform: scale(1.1);
}

.product-category-overlay h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.product-category-overlay ul {
  color: var(--white);
  text-align: left;
}

.product-category-overlay ul li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.product-category-overlay ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.partners {
  background: var(--light-gray);
}

.partners-showcase {
  margin-bottom: 3rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: var(--white);
  border: 3px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.partners-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.partners-showcase:hover .partners-image {
  transform: scale(1.01);
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.partner-item {
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--secondary-color);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: var(--primary-color);
  color: var(--white);
}

.contact {
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-light);
}

.contact-details a {
  color: var(--text-light);
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--secondary-color);
}

.contact-team {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-team-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.team-member {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.team-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.team-header h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin: 0;
}

.team-role {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.team-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--text-light);
}

.team-contact i {
  color: var(--primary-color);
  font-size: 1rem;
}

.team-contact a {
  color: var(--text-light);
  transition: var(--transition);
}

.team-contact a:hover {
  color: var(--primary-color);
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1rem;
}

.social-btn:hover {
  background: var(--secondary-color);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn i {
  font-size: 1.2rem;
  color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.iti {
  width: 100%;
  display: block;
}

.iti__input {
  width: 100%;
  padding: 1rem;
  padding-left: 52px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.iti__input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.iti__selected-flag {
  padding: 0 0 0 12px;
}

.iti__flag-container {
  padding: 1rem 0;
}

.iti__country-list {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #e0e0e0;
  max-height: 250px;
  font-family: "Poppins", sans-serif;
}

.iti__country {
  padding: 10px 15px;
  transition: var(--transition);
  background-color: var(--white) !important;
}

.iti__country-name {
  color: var(--text-dark) !important;
}

.iti__dial-code {
  color: var(--text-light) !important;
}

.iti__country:hover {
  background-color: var(--light-gray) !important;
}

.iti__country:hover .iti__country-name {
  color: var(--text-dark) !important;
}

.iti__country:hover .iti__dial-code {
  color: var(--secondary-color) !important;
}

.iti__country.iti__highlight {
  background-color: var(--primary-color) !important;
}

.iti__country.iti__highlight .iti__country-name,
.iti__country.iti__highlight .iti__dial-code {
  color: var(--white) !important;
}

.iti__country.iti__active {
  background-color: var(--primary-color) !important;
}

.iti__country.iti__active .iti__country-name,
.iti__country.iti__active .iti__dial-code {
  color: var(--white) !important;
}

.iti__search-input {
  padding: 10px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin: 10px;
  width: calc(100% - 20px);
  font-family: "Poppins", sans-serif;
}

.iti__search-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.2);
}

.footer-section p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-top: 0.5rem;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.footer-section a {
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-section li i {
  color: var(--primary-color);
  flex-shrink: 0;
  min-width: 20px;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-gray);
  transition: var(--transition);
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-social i {
  font-size: 1.5rem;
  min-width: 25px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
  }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2.5rem 0;
    gap: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

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

  .nav-menu li {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.4s ease forwards;
  }

  .nav-menu.active li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    animation-delay: 0.15s;
  }
  .nav-menu.active li:nth-child(3) {
    animation-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(4) {
    animation-delay: 0.25s;
  }
  .nav-menu.active li:nth-child(5) {
    animation-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(6) {
    animation-delay: 0.35s;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    margin: 0 1rem;
    background: transparent;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: linear-gradient(
      135deg,
      rgba(230, 57, 70, 0.1),
      rgba(255, 107, 122, 0.1)
    );
    transform: translateX(5px);
    color: var(--primary-color);
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger span {
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .social-links {
    display: none;
  }

  .language-switcher {
    margin: 0 0.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-experience {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-container {
    order: 1;
    margin-bottom: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-showcase {
    grid-template-columns: 1fr;
  }

  .product-category {
    height: 400px;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-experience {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .partners-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .language-switcher {
    margin: 0;
    padding: 0.2rem;
  }

  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}
