/* Saltoris Technologies - Clean CSS */
/* Exact styling matched from original site */

:root {
  /* Exact colors from original Wix site */
  --primary-blue: #377CFD;
  --secondary-blue: #3A6AFD;
  --dark-blue: #001C80;
  --accent-green: #407C51;
  --text-dark: #000000;
  --text-gray: #8F8F8F;
  --text-light: #666666;
  --white: #FFFFFF;
  --bg-light: #F5F7FF;
  --bg-dark: #00060F;
  --border-gray: #C7C7C7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

/* Typography - Exact from original */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: var(--secondary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-blue);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header - Exact from original */
.header {
  background: var(--primary-blue);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
}

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

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation - Exact from original */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 24px 20px;
  display: block;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-links>li>a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
  opacity: 0.9;
}

/* Dropdown - Exact from original */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown a {
  display: block;
  padding: 12px 24px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--secondary-blue);
}

/* CTA Button - Exact from original */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(55, 124, 253, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

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

.btn-white-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
}

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

.btn-white:hover {
  background: var(--bg-light);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Hero Section - Exact from original */
.hero {
  background: var(--primary-blue);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.hero-content {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--white);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-image img {
  max-width: 100%;
  border-radius: 0;
}

/* Section Styles - Exact from original */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--primary-blue);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.section-label {
  color: var(--primary-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Products Section */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-card h3 {
  color: var(--dark-blue);
  font-size: 30px;
  margin-bottom: 16px;
}

.product-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Features Grid */
.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-content {
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

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

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.feature-card h4 {
  color: var(--dark-blue);
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: var(--dark-blue);
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Testimonials - Exact from original */
.testimonials {
  background: var(--bg-light);
  padding: 100px 0;
}

.testimonials .section-title h2 {
  color: var(--dark-blue);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: none;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stars {
  color: #FF4444;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* Contact Form */
.contact-form {
  max-width: 100%;
}

.contact-form h2 {
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(55, 124, 253, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Footer - Exact from original */
.footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 24px;
}

.footer-logo p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.footer-section h4 {
  color: var(--dark-blue);
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul a {
  color: var(--text-light);
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* Page Hero - Exact from original */
.page-hero {
  background: var(--primary-blue);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15); */
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.value-card h3 {
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.8;
}

/* CTA Section - Exact from original */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-section .btn {
  background: var(--white);
  color: var(--primary-blue);
  padding: 16px 40px;
  font-size: 16px;
}

.cta-section .btn:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Navigation */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  h1,
  .hero-content h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

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

  .features-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links>li>a {
    padding: 20px 30px;
    border-bottom: none;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
    visibility: visible;
    padding: 0;
  }

  .dropdown a {
    padding: 15px 50px;
    color: rgba(255, 255, 255, 0.8);
  }

  .dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  h1,
  .page-hero h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .features-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-logo img {
    height: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .product-card,
  .service-card,
  .feature-card,
  .value-card {
    padding: 32px 24px;
  }
}

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

  h1,
  .page-hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .page-hero {
    padding: 130px 0 60px;
  }
}