/* ===== Base / Tokens ===== */
:root {
  --ld-bg: #ffffff;
  --ld-text: #1a1a1a;
  --ld-muted: #666666;
  --ld-accent: #ff4a00;
  --ld-accent-2: #ff6b00;

  --border: rgba(0, 0, 0, 0.06);
  --card: #ffffff;
  --card-ghost: rgba(255, 255, 255, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

#hero {
  width: 100%;
}

#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
  align-items: start;
  min-height: 80vh;
}

.contact-left {
  position: relative;
  height: 100%;
}

.image-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #f2f2f2;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2.5rem 2.5rem;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.image-container:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-container:hover img {
  transform: scale(1.05);
}

.overlay-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
}

.overlay-text p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.contact-left .connect-section {
  margin-top: 1.5rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1rem 0;
}

.contact-header {
  text-align: left;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ld-accent);
  background: rgba(255, 74, 0, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 74, 0, 0.2);
}

.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.subheading p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4a4a4a;
  font-weight: 400;
  margin: 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--card-ghost);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.highlight-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.highlight-item:hover {
  background: var(--card);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 2rem;
  min-width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ld-accent), var(--ld-accent-2));
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 74, 0, 0.3);
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ===== Socials ===== */
.connect-section {
  padding: 2.5rem;
}

.connect-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.connect-section > p {
  font-size: 1rem;
  color: #666;
  margin: 0 0 2rem;
}

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

.social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.social-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.social-icon {
  min-width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.social-content {
  flex: 1;
}

.social-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #1a1a1a;
}

.social-content p {
  font-size: 0.9rem;
  color: var(--ld-accent);
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.social-desc {
  font-size: 0.85rem;
  color: #888;
}

.social-card.instagram:hover {
  border-color: #e4405f;
}
.social-card.instagram:hover .social-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #fff;
}

.social-card.tiktok:hover {
  border-color: #000;
}
.social-card.tiktok:hover .social-icon {
  background: #000;
  color: #fff;
}

.social-card.whatsapp:hover {
  border-color: #25d366;
}
.social-card.whatsapp:hover .social-icon {
  background: #25d366;
  color: #fff;
}

/* ===== Form ===== */
.vision-form-container {
  padding: 0;
  overflow: hidden;
}

.vision-form {
  padding: 3rem;
}

.form-header {
  text-align: start;
  margin: 0 0 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
}

.form-header p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.form-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  color: #1a1a1a;
  line-height: 1.5;
  font-family: inherit;
  box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--ld-accent);
  box-shadow: 0 0 0 4px rgba(255, 74, 0, 0.1);
  background: #fff;
}

.input-group textarea {
  resize: vertical;
  min-height: 140px;
}

.whatsapp-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.button-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.button-accent {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.whatsapp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-submit:hover .button-accent {
  left: 100%;
}
.whatsapp-submit:active {
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  #contact {
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
  .image-container {
    height: 500px;
  }

  #hero {
    padding-top: 5rem;
  }
}

@media (max-width: 968px) {
  #contact {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem 1rem;
  }
  .image-container {
    height: 400px;
  }
  .contact-header h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .vision-highlights {
    gap: 1rem;
  }
  .highlight-item {
    padding: 1.25rem;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #contact {
    padding: 2rem 1rem;
  }
  .image-container {
    height: 300px;
    border-radius: 16px;
  }
  .contact-right {
    gap: 2rem;
  }
  .contact-header h1 {
    font-size: 1.75rem;
  }
  .subheading p {
    font-size: 1rem;
  }
  .social-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .vision-form {
    padding: 2rem 1.5rem;
  }
  .form-header h3 {
    font-size: 1.5rem;
  }
  .connect-section {
    padding: 1.5rem;
  }
}

.social-card:nth-child(1) {
  transition-delay: 0.1s;
}
.social-card:nth-child(2) {
  transition-delay: 0.2s;
}
.social-card:nth-child(3) {
  transition-delay: 0.3s;
}

.highlight-item:nth-child(1) {
  transition-delay: 0.1s;
}
.highlight-item:nth-child(2) {
  transition-delay: 0.2s;
}
.highlight-item:nth-child(3) {
  transition-delay: 0.3s;
}
