/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700&family=Orbitron:wght@400;500;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #f4f5ff;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container {
  width: 100%;
  padding: 40px 20px;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}

html {
  scroll-behavior: smooth;
}


h1 {
  font-size: 3.2rem;
  font-weight: 700;
}

h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #9d4edd, #00d4ff);
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

section {
  padding: 60px 0;
}

/* Header Styles (Block 1) */
header {
  height: 430px;
  min-height: 430px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(72, 0, 122, 0.9), rgba(0, 212, 255, 0.8)),
              url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

header .container {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

header h1 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

header h2 {
  font-size: 1.8rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
}

header h2::after {
  background: #fff;
  width: 60px;
}

header p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  max-width: 600px;
}

/* Button Styles */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #9d4edd, #00d4ff);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.btn-small {
  font-size: 0.9rem;
  padding: 8px 20px;
  margin-top: 10px;
}

/* Products Section */
#urunler {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product {
  background: linear-gradient(135deg, #f6f9fc, #eef3ff);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.product h3 {
  color: #7b2cbf;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00d4ff;
  margin-top: 15px;
}

/* Article Section */
.article {
  background: linear-gradient(135deg, #eef6ff, #f8fdff);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #9d4edd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article h3 {
  color: #7b2cbf;
  font-size: 1.8rem;
}

.article p {
  text-align: justify;
}

/* Specialists Section */
#uzmanlarimiz {
  background-color: #7b2cbf;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#uzmanlarimiz h2::after {
  background: #fff;
}

.specialists-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.specialist {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.specialist:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.specialist h3 {
  color: #fff;
}

.specialist p:first-of-type {
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 15px;
}

/* Reviews Section */
#yorumlar {
  background-color: #f5f7fa;
  border-radius: 30px;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.review h3 {
  color: #7b2cbf;
}

.rating {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 15px;
}

/* Form Section */
#abone-ol {
  background: linear-gradient(135deg, #9d4edd, #00d4ff);
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#abone-ol h2::after {
  background: #fff;
}

form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

input[type="email"] {
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
}

input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.3);
}

form .btn {
  align-self: center;
  margin-top: 10px;
}

/* Contact Section (Block 6) */
#iletisim {
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

iframe {
    display: block;
    border-radius: 20px;
}

/* Footer Section (Block 7) */
footer {
    background: #0A2342;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 10px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    header {
        height: auto;
        min-height: 430px;
    }

    .products-container,
    .specialists-container,
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 30px 15px;
    }

    section {
        padding: 40px 0;
    }

    .article {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    header {
        min-height: 350px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .product,
    .specialist,
    .review {
        padding: 20px;
    }

    form {
        padding: 20px;
    }
}
/* ==== TEAM & CONTACT SECTIONS ==== */
#team, 
#contact-us {
  background: linear-gradient(135deg, #003973, #E5E5BE); /* синій до світлого пастельного */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  border-radius: 50px;
}

/* можна спробувати альтернативу, якщо хочеш більш насичений */
#team.alt, 
#contact-us.alt {
  background: linear-gradient(135deg, #0A2342, #2C6DD5); /* темно-синій до яскравого */
}

#team h2,
#contact-us h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: 1px;
}

#team p,
#contact-us p {
  color: #f0f4ff;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

/* TEAM cards */
.specialists-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.specialist {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  max-width: 320px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.specialist h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.specialist p {
  color: #dce7ff;
}

/* CONTACT form */
#contact-us form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

#contact-us input[type="email"] {
  padding: 12px 15px;
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
  outline: none;
}

#contact-us .btn {
  background-color: #ffffff;
  color: #003973;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact-us .btn:hover {
  background-color: #dfe8ff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .specialists-container {
    flex-direction: column;
    align-items: center;
  }
}
