* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    padding-top: 90px;
  }
  
 
.tariffs-section {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 24px 16px;
  text-align: center;
}
.tariffs-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}
.tariffs-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 8px 28px;
  border-radius: 20px;
  border: none;
  background: #eee;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active {
  background: #06a0de;
  color: #fff;
}
.tariffs-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.tariff-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 36px 32px 32px 32px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tariff-card:hover {
  box-shadow: 0 8px 32px rgba(255,60,10,0.13);
  transform: translateY(-4px) scale(1.03);
}
.tariff-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}
.tariff-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.tariff-price .azn {
  font-size: 1.3rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 6px;
}
.tariff-speed {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 18px;
}
.tariff-join {
  padding: 12px 36px;
  border-radius: 24px;
  border: none;
  background: #06a0de;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.tariff-join:hover {
  background: #06a0de;
}
.tariff-list {
  list-style: disc inside;
  text-align: left;
  margin: 12px 0 18px 0;
  padding: 0 0 0 10px;
  color: #222;
  font-size: 1rem;
}
.tariff-list li {
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .tariffs-cards {
    gap: 18px;
  }
  .tariff-card {
    min-width: 220px;
    max-width: 100%;
    padding: 28px 12px 24px 12px;
  }
}
@media (max-width: 600px) {
  .tariffs-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .tariff-card {
    width: 100%;
    min-width: unset;
    max-width: 400px;
    padding: 20px 8px 18px 8px;
  }
  .tariffs-section {
    padding: 12px 2vw;
  }
  .tariffs-title {
    font-size: 1.3rem;
  }
}
  
.contact-section {
  max-width: 1400px;
  margin: 60px auto 0 auto;
  display: flex;
  gap: 0;
  background: none;
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
  box-sizing: border-box;
}
.contact-form-box {
  background: #181818;
  color: #fff;
  flex: 1 1 420px;
  padding: 48px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 320px;
}
.contact-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-title-underline {
  width: 48px;
  height: 4px;
  background: #06a0de;
  border-radius: 2px;
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form input,
.contact-form textarea {
  background: #333;
  border: none;
  border-radius: 8px;
  padding: 16px 14px;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
  margin-bottom: 0;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}
.contact-form button {
  background: #06a0de;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #06a0de;
}
.contact-image-box {
  flex: 1 1 520px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  max-height: 600px;
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    min-height: unset;
  }
  .contact-form-box, .contact-image-box {
    min-width: unset;
    width: 100%;
    padding: 28px 10vw 24px 10vw;
  }
  .contact-image-box img {
    max-height: 320px;
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 600px) {
  .contact-form-box, .contact-image-box {
    padding: 18px 2vw 14px 2vw;
  }
  .contact-title {
    font-size: 1.2rem;
  }
  .contact-title-underline {
    margin-bottom: 18px;
  }
}
  
.faq-section {
  width: 100%;
  padding: 0 0 40px 0;
  margin: 60px 0 0 0;
}
.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}
.faq-title-underline {
  width: 48px;
  height: 4px;
  background: #06a0de;
  border-radius: 2px;
  margin-bottom: 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item.active {
  background: #06a0de;
  color: #fff;
}
.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 28px 60px 28px 32px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-item.active .faq-question {
  color: #fff;
}
.faq-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #06a0de;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-left: 18px;
  transition: background 0.2s, color 0.2s;
}
.faq-item.active .faq-toggle {
  background: #06a0de;
  color: #fff;
  border: 2px solid #fff;
}
.faq-answer {
  font-size: 1.1rem;
  padding: 0 32px 24px 32px;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(.4,2,.6,1), opacity 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-top: 0;
}
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 18px 48px 18px 14px;
  }
  .faq-answer {
    font-size: 0.98rem;
    padding: 0 14px 16px 14px;
  }
}
  


.services-section {
  background: #f8f8f8;
  padding: 60px 0 40px 0;
}
.services-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  width: 340px;
  min-width: 260px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px rgba(255,60,10,0.13);
  transform: translateY(-4px) scale(1.03);
}
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-icon {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.service-title {
  margin-top: 38px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}
.service-desc {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(0,0,0,0.88);
  color: #fff;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 32px 18px;
  z-index: 10;
}
.service-card:hover .service-desc,
.service-card:focus-within .service-desc {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .services-cards {
    gap: 18px;
  }
  .service-card {
    min-width: 220px;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .service-card {
    width: 100%;
    min-width: unset;
    max-width: 400px;
  }
}
  
.about-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.about-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.about-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  padding: 48px 32px 36px 32px;
  min-width: 320px;
  max-width: 420px;
  width: 90vw;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: aboutModalIn 0.7s cubic-bezier(.4,2,.6,1);
}
@keyframes aboutModalIn {
  0% { transform: translateY(-120px) scale(0.95); opacity: 0; }
  80% { transform: translateY(10px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.about-modal-logo {
  margin-bottom: 18px;
  animation: aboutLogoIn 0.8s cubic-bezier(.4,2,.6,1);
}
@keyframes aboutLogoIn {
  0% { transform: translateY(-80px) scale(0.7); opacity: 0; }
  80% { transform: translateY(8px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.about-modal-logo img {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.about-modal-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff3c0a;
}
.about-modal-text p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0;
}
.about-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  color: #ff3c0a;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.about-modal-close:hover {
  color: #b81e00;
}
@media (max-width: 600px) {
  .about-modal-content {
    padding: 24px 6vw 18px 6vw;
    min-width: unset;
    max-width: 98vw;
  }
  .about-modal-logo img {
    height: 44px;
  }
  .about-modal-text h2 {
    font-size: 1.2rem;
  }
}
  
.menu,
.contact {
  display: flex;
}
.hamburger,
.menu-close-x {
  display: none;
}
@media (max-width: 900px) {
  .menu,
  .contact {
    display: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2100;
  }
  .menu.active.overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  }
  .menu-close-x {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 2.6rem;
    color: #ff3c0a;
    font-weight: bold;
    cursor: pointer;
    padding: 24px 0 0 0;
    margin-bottom: 0;
    z-index: 10;
    background: none;
    border: none;
    transition: color 0.2s;
  }
  .menu-close-x:hover {
    color: #b81e00;
  }
  .menu-mobile-logo {
    display: none;
  }
  @media (max-width: 900px) {
    .menu-mobile-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding: 32px 0 18px 0;
      border-bottom: 1px solid #eee;
      margin-bottom: 18px;
    }
    .menu-mobile-logo img {
      height: 60px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
    }
  }
  .menu a {
    display: block;
    width: 100%;
    padding: 24px 0;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    color: #111;
    background: #f5f5f5;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
  }
  .menu a:last-child {
    border-bottom: none;
  }
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;

}

.card {

  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 117, 201, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 5px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 117, 201, 0.25);
}

.card h2 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.price {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.details {
  font-size: 0.95em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  display: flex;
  transition: background-color 0.3s ease;
  justify-content: center;
}

.button:hover {
  background-color: var(--accent-color);
}

@media (max-width: 600px) {
  .card h2 {
    font-size: 1.2em;
  }
}


.custom-footer {
  padding: 30px 0;
  background-color: #fff;
}

.footer-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.line {
  height: 1px;
  background-color: #ccc;
  flex: 1;
  /* max-width: 150px; */
}

.diamond {
  width: 10px;
  height: 10px;
  background-color: #e2e2e2;
  transform: rotate(45deg);
  margin: 0 10px;
}



/* foooterr */
.footer {
  background: #0a0a0a;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 60%;
  height: 100%;
  background: #0075C9;
  transform: skewX(-40deg);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: 50%;
}

.footer-content h2 {
  color: #fff;
  margin-bottom: 10px;
  border-bottom: 3px solid #0075C9;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-content p,
.footer-content a {
  color: #ccc;
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-top: 6px;
}

.footer-content a:hover {
  color: #fff;
}

.footer-map {
  position: relative;
  z-index: 1;
  width: 45%;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 20px;
  }

  .footer-content, .footer-map {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer::before {
    display: none;
  }
}