* {margin:0;padding:0;box-sizing:border-box}
:root {
  --primary:#ffa500;
  --secondary:#6c5ce7;
  --dark:#2c3e50;
  --light:#f8f9fa;
}
body {
  font-family:Roboto,sans-serif;
  line-height:1.6;
  color:var(--dark);
  background:#fff;
}
.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
h1,h2,h3,h4 {margin-bottom:1rem}
a {text-decoration:none;color:inherit;transition:color .3s}

/* ================= HEADER ================= */
.header {
  position:fixed;
  top:0;left:0;width:100%;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(6px);
  box-shadow:0 2px 10px rgba(0,0,0,.1);
  z-index:100
}
.header-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0
}
.logo img {height:50px;width:auto}
.nav {display:flex;gap:1.5rem}
.nav a {font-weight:500;position:relative}
.nav a::after {
  content:"";
  position:absolute;
  left:0;bottom:-4px;
  width:0;height:2px;
  background:var(--primary);
  transition:width .3s
}
.nav a:hover::after {width:100%}
.mobile-toggle {
  display:none;
  background:none;border:none;
  font-size:1.5rem;color:var(--dark)
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, rgba(44,62,80,.85), rgba(0,0,0,.6)), 
              url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
  margin-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
}
.hero-text h1 span {
  color: var(--primary); /* твой оранжевый */
}

.hero-text p {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  max-width: 540px;
}

.hero-list {
  list-style: none;
  margin: 1.5rem 0;
}
.hero-list li {
  margin: .5rem 0;
  font-size: 1rem;
}
.hero-list i {
  color: var(--primary);
  margin-right: 8px;
}

.hero-image {
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.hero-image img {
  border-radius: 12px;
  width: 100%;
}

.hero-badge {
  position: absolute;
  bottom: -20px; left: 20px;
  background: #fff;
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  font-size: .9rem;
}
.hero-badge i {
  color: var(--primary);
  margin-right: 6px;
}

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

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.about-text h2 span {
  color: var(--primary);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 2rem;
}
.stat-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  text-align: center;
  flex: 1;
}
.stat-card h3 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: .5rem;
}
.stat-card p {
  font-size: .95rem;
  color: var(--dark);
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  width: 100%;
}


/* ================= BUTTONS ================= */
.btn {
  display:inline-block;
  padding:14px 28px;
  border-radius:8px;
  font-weight:700;
  transition:.3s;
  cursor:pointer
}
.btn-primary {
  background:linear-gradient(135deg,#ff7b00,#ffb300);
  color:#fff;
  box-shadow:0 6px 20px rgba(255,165,0,.4)
}
.btn-primary:hover {
  background:linear-gradient(135deg,#ff9d00,#ffc233);
  transform:translateY(-2px)
}
.btn-secondary {
  border:2px solid var(--primary);
  color:var(--primary);
  background:transparent
}
.btn-secondary:hover {
  background:var(--primary);
  color:#fff
}

/* ================= SOCIAL ================= */
.social-sidebar {
  position:fixed;
  left:0;top:40%;
  display:flex;flex-direction:column;
  gap:10px;z-index:200
}
.social-sidebar a {
  background:linear-gradient(135deg,#ff7b00,#ffb300);
  color:#fff;padding:10px;
  border-radius:0 6px 6px 0;
  display:flex;align-items:center;justify-content:center;
  transition:.3s
}
.social-sidebar a:hover {
  background:linear-gradient(135deg,#6c5ce7,#8e44ad);
  transform:translateX(3px)
}

/* ================= SECTIONS ================= */
section {
  padding:100px 0;
  position:relative;
  margin-bottom:80px; /* отступ между всеми секциями */
}

/* Светлые секции */
.section-light {
  background:#fff;
  color:var(--dark);
}
.section-light .card {
  background:#fff;
  color:var(--dark);
  box-shadow:0 6px 16px rgba(0,0,0,.1);
}

/* ================= WORK WITH US SECTION (FINAL DESIGN) ================= */
/* ================= WORK WITH US SECTION (FIXED FINAL VERSION) ================= */
.section-gray {
  background: #f8f9fc;
  color: #1a1a1a;
  padding: 100px 0;
}

/* ===== Заголовки ===== */
.section-gray h2 {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.section-gray .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

/* ===== ВЕРХНЯЯ СЕТКА (ТЕКСТ + ФОРМА) ===== */
.section-gray .top-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section-gray p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ===== ФОРМА ===== */
.section-gray .card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

.section-gray .card h3 {
  margin-bottom: 0.75rem;
  color: #000;
  font-weight: 700;
}

.section-gray form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.section-gray form input,
.section-gray form select,
.section-gray form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.section-gray form input:focus,
.section-gray form select:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.2);
  outline: none;
}

.section-gray form button {
  grid-column: 1 / -1;
  background: #1a237e;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.section-gray form button:hover {
  background: #283593;
}

/* ===== КАРТОЧКИ НИЖЕ ===== */
.section-gray .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.section-gray .grid .card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: left;
  padding: 1.5rem;
}

.section-gray .grid .card i {
  background: #e8eaf6;
  color: #1a237e;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-gray .grid .card h4 {
  color: #000;
  margin-bottom: 0.5rem;
}

.section-gray .grid .card p {
  color: #555;
  font-size: 0.95rem;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
  .section-gray .top-layout {
    grid-template-columns: 1fr;
  }

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


/* CTA + футер яркие */
.section-dark {
  background:linear-gradient(135deg,#ff7b00,#ff416c,#ff4b2b);
  background-size:300% 300%;
  animation:gradientShift 20s ease infinite;
  color:#fff;
}
.section-dark .card {
  background:rgba(255,255,255,0.15);
  color:#fff;
}
/* ================= MODERN CTA ================= */
.cta-modern {
  background: linear-gradient(135deg, #ff7b00, #ffb300);
  background-image: url(public/images/bees-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 400px;
}


/* ================= ELEGANT CTA (LIGHT STYLE) ================= */
/* ================= ELEGANT CTA (IMPROVED DESIGN, SAME CLASSES) ================= */
.cta-elegant {
  background: linear-gradient(135deg, #fffdf6 0%, #fff7e1 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-size: 400px;
}

.cta-elegant-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 3rem;
}

.cta-elegant-text h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-elegant-text p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}

.cta-elegant-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* пчела в круге — делаем мягкий фирменный дизайн без квадрата */
.bee-circle {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at center, #ffe082 0%, #ffca28 40%, #ffb300 80%);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(255, 171, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* внутри теперь SVG или PNG пчелы */
.bee-circle img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.25));
  transform: scale(1) rotate(-3deg);
  transition: transform .4s ease, filter .4s ease;
}

/* анимация наведения */
.bee-circle:hover img {
  transform: scale(1.08) rotate(3deg);
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.25));
}

/* лёгкая плавающая анимация пчелы */
@keyframes floatBee {
  0% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
  100% { transform: translateY(0) rotate(-3deg); }
}
.bee-circle img {
  animation: floatBee 4s ease-in-out infinite;
}

/* адаптив */
@media(max-width: 968px) {
  .cta-elegant-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bee-circle {
    margin-top: 3rem;
  }
  .cta-elegant-text h2 {
    font-size: 2rem;
  }
}


.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.cta-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transform: rotate(2deg);
  transition: transform .4s ease;
}

.cta-image img:hover {
  transform: rotate(0deg) scale(1.03);
}

@media(max-width: 968px) {
  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-text h2 {
    font-size: 2rem;
  }
  .cta-image img {
    margin-top: 2rem;
  }
}

/* ================= CARDS ================= */
.grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem}
.card {
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(6px);
  border-radius:16px;
  padding:2rem;
  color:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  transition:transform .3s, box-shadow .3s
}
.card:hover {
  transform:translateY(-8px);
  box-shadow:0 12px 32px rgba(0,0,0,.3)
}
.card i {font-size:2.2rem;color:var(--primary);margin-bottom:1rem;transition:.3s}
.card:hover i {transform:scale(1.2) rotate(5deg)}

/* ================= STEPS ================= */
.step-number {
  width:60px;height:60px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff7b00,#ffb300);
  color:#fff;display:flex;align-items:center;justify-content:center;
  margin:0 auto 12px;
  font-weight:900;font-size:1.2rem;
  box-shadow:0 6px 16px rgba(255,165,0,.4)
}

/* ================= MAP ================= */
#map {
  width:100%;
  height:380px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  margin-top:1.5rem
}

/* ================= CONTACT ================= */
.contact-content {display:grid;grid-template-columns:2fr 1fr;gap:2rem;margin-top:2rem}
form {display:flex;flex-direction:column;gap:1rem;max-width:700px}
input:focus,textarea:focus,select:focus {
  outline:none;
  border:1px solid var(--primary);
  box-shadow:0 0 0 3px rgba(255,165,0,.2)
}
input, textarea, select {
  background:rgba(255,255,255,0.2);
  color:var(--dark);
  border:1px solid rgba(0,0,0,0.2);
  border-radius:8px;
  padding:12px;
}
input::placeholder, textarea::placeholder {
  color:rgba(0,0,0,0.5)
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.contact-info i {
  color: var(--primary);
  margin-right: 8px;
}

.office-hours ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.office-hours li {
  margin-bottom: .5rem;
  display: flex;
  justify-content: space-between;
}

.contact-form {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

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

.agree {
  font-size: .9rem;
  color: var(--dark);
}

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

/* ================= FOOTER ================= */
.footer {background:#2c3e50;color:#fff;padding:3rem 0 1rem}
.footer-content {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2rem;margin-bottom:1.5rem
}
.footer-section ul {list-style:none}
.footer-section a {color:#ddd;transition:.3s}
.footer-section a:hover {color:var(--primary)}
.footer-bottom {text-align:center;border-top:1px solid rgba(255,255,255,.12);padding-top:1rem}

/* ================= ANIMATIONS ================= */
.fade-in {opacity:0;transform:translateY(40px);transition:.8s ease-out}
.fade-in.show {opacity:1;transform:translateY(0)}
@keyframes gradientShift {
  0% {background-position:0% 50%}
  50% {background-position:100% 50%}
  100% {background-position:0% 50%}
}

/* ================= RESPONSIVE ================= */
@media(max-width:968px){
  .nav {
    display:none;flex-direction:column;
    position:absolute;right:20px;top:70px;
    background:#fff;padding:1rem;border-radius:8px;
    box-shadow:0 16px 40px rgba(0,0,0,.15)
  }
  .nav.active {display:flex}
  .mobile-toggle{display:block}
  .contact-content{grid-template-columns:1fr}
  .hero h1{font-size:2.4rem}
}

