/* ===========================================
   SABIA DIGITAL CONTACT PAGE STYLES
   =========================================== */
:root {
  --color-primary: #22c55e;
  --color-slate-950: #0f172a;
  --color-text-dark: #1e293b;
  --color-text-grey: #64748b;
  --color-white: #ffffff;
}

/* Reset & Basics */
body, html { 
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

section {
  width: 100%;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-global {
  background: linear-gradient(
      rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.9)
    ),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  padding: 8rem 1rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-global h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-global p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 0.8;
}

.mouse-icon {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.4s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

/* ===========================================
   CONTACT SECTION (NEO STYLE)
   =========================================== */
.neo-contact-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 6rem 0;
  flex-wrap: wrap;
}

.neo-details-box {
  flex: 1 1 40%;
  background: var(--color-slate-950);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.neo-tag-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.neo-tag-line-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.neo-tag-line-text {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.neo-contact-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.neo-contact-subtext {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.neo-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.neo-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.neo-contact-icon {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.neo-info-text h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.neo-info-text p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.neo-socials {
  margin-top: 2rem;
}

.neo-socials a {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.neo-socials a:hover {
  color: var(--color-primary);
}

/* ===========================================
   FORM BOX
   =========================================== */
.neo-form-box {
  flex: 1 1 50%;
  background: var(--color-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.neo-form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.neo-form-group input,
.neo-form-group textarea {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--color-text-dark);
}

.neo-form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: var(--color-text-grey);
  pointer-events: none;
  transition: all 0.3s ease;
}

.neo-form-group input:focus,
.neo-form-group textarea:focus {
  border-color: var(--color-primary);
}

.neo-form-group input:focus + label,
.neo-form-group input:not(:placeholder-shown) + label,
.neo-form-group textarea:focus + label,
.neo-form-group textarea:not(:placeholder-shown) + label {
  top: -0.7rem;
  left: 0.8rem;
  font-size: 0.8rem;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 0 0.3rem;
}

.neo-form-consent {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-grey);
}

.neo-form-consent input {
  accent-color: var(--color-primary);
  margin-right: 0.5rem;
}

.neo-contact-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.neo-contact-btn:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

/* ===========================================
   MAP SECTION
   =========================================== */
.map-section {
  width: 100%;
  margin-top: 4rem;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.map-section iframe {
  width: 100%;
  border: none;
  display: block;
  height: 450px;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 992px) {
  .hero-global h1 {
    font-size: 2.2rem;
  }

  .neo-contact-section {
    flex-direction: column;
  }

  .neo-details-box,
  .neo-form-box {
    width: 100%;
    flex: 1 1 100%;
  }

  .neo-details-box {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-global {
    padding: 6rem 1rem 5rem;
  }

  .neo-form-box,
  .neo-details-box {
    padding: 2rem 1.5rem;
  }

  .hero-global h1 {
    font-size: 1.9rem;
  }

  .hero-global p {
    font-size: 1rem;
  }

  .neo-contact-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .neo-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .neo-form-consent {
    font-size: 0.85rem;
  }

  .neo-info-text h3 {
    font-size: 0.9rem;
  }
}
/* 6. ReCAPTCHA Styling */
.g-recaptcha {
    grid-column: 1 / -1;
    display: flex;
    justify-content: left;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--color-border); 
}
