/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ebc392;
  color: #000;
  line-height: 1.5;
}

/* NAVBAR */
.navbar {
  background: #ff6123;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo img {
  width: 160px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.instagram-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0);
  padding: 8px;
  border-radius: 14px;
  transition: 0.2s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.instagram-icon-link:hover {
  transform: translateY(-2px);
}

.instagram-icon-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s;
}

.btn-orange {
  background: #ff6123;
  color: white;
}

.btn-light {
  background: white;
  color: #ff6123;
}

.btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  background: #ff6123;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 70px;
  color: white;
  margin-bottom: 20px;
  line-height: 0.95;
}

.hero-text p {
  color: white;
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1 1 320px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
}

/* VALUES */
.values-section {
  display: flex;
  gap: 80px;
  padding: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.values-image {
  flex: 1 1 320px;
}

.values-image img {
  width: 100%;
  max-width: 400px;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.values-text {
  flex: 1 1 400px;
}

.values-text h2 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 0.95;
}

.value-item {
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 22px;
  font-weight: 900;
}

.value-item p {
  font-size: 16px;
}

/* PRICING */
.pricing-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #f0c99d;
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 25px;
  transition: 0.3s;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.pricing-card h3 {
  font-size: 30px;
  margin: 20px;
}

.price {
  font-size: 20px;
  font-weight: bold;
  margin: 0 20px 15px;
}

.desc {
  font-size: 15px;
  margin: 0 20px 20px;
  line-height: 1.5;
  color: #333;
}

.benefits {
  list-style: none;
  margin: 0 20px 20px;
}

.benefits li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6123;
  font-weight: bold;
}

.pricing-card .btn {
  margin-left: 20px;
}

/* INSTAGRAM */
.instagram-section {
  padding: 30px 60px 80px;
}

.instagram-card {
  background: linear-gradient(135deg, #fff2e7, #f8d8bb);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.instagram-card-image {
  flex: 1 1 260px;
  text-align: center;
}

.instagram-card-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.instagram-card-content {
  flex: 1 1 420px;
}

.instagram-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff6123;
}

.instagram-card-content h2 {
  font-size: 42px;
  margin-bottom: 14px;
  line-height: 1.05;
}

.instagram-card-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 24px;
  max-width: 560px;
}

/* CONTACT */
.contact-section {
  display: flex;
  gap: 60px;
  padding: 80px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1 1 320px;
}

.contact-left h2 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 0.95;
}

.contact-left p {
  font-size: 18px;
}

.contact-right {
  flex: 1 1 420px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.input-group {
  width: 100%;
  margin-bottom: 15px;
}

.form-row .input-group {
  flex: 1 1 220px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: 2px solid black;
  background: transparent;
}

textarea {
  height: 120px;
  resize: vertical;
}

.form-btn {
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  font-weight: bold;
  background: rgba(255, 97, 35, 0.08);
  flex-wrap: wrap;
}

.footer-instagram img {
  width: 32px;
  height: 32px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar,
  .hero,
  .values-section,
  .pricing-section,
  .contact-section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-text h1,
  .values-text h2,
  .contact-left h2 {
    font-size: 42px;
  }

  .instagram-section {
    padding: 20px 24px 60px;
  }

  .instagram-card-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
  }

  .header-actions {
    flex-direction: column;
  }

  .hero-text,
  .hero-image,
  .values-text,
  .values-image,
  .contact-left,
  .contact-right,
  .instagram-card-content,
  .instagram-card-image {
    flex: 1 1 100%;
  }

  .hero-text h1,
  .values-text h2,
  .contact-left h2 {
    font-size: 34px;
  }

  .hero-text p,
  .instagram-card-content p {
    font-size: 16px;
  }

  .pricing-card {
    max-width: 100%;
  }

  .values-image img {
    height: 360px;
  }

  .instagram-card {
    padding: 22px;
  }
}