
:root {
    --green: #7dc97a;
    --green-deep: #1a2e1a;
    --green-dark: #243324;
    --green-mid: #3a5c3a;
    --green-brand: #4c8b4c;
    --green-light: #6bbf6b;
    --green-accent: #8edf7a;
    --green-pale: #f0f7f0;
    --green-faint: #f7fbf7;
    --text-dark: #111c11;
    --text-mid: #3b4f3b;
    --text-muted: #7a9a7a;
    --white: #ffffff;
    --card-bg: #ffffff;
}


.container-reginol {
  max-width: 950px;
  margin: 50px auto 0;
  padding: 0 15px;
}


.header-box {
  background: #ffffff;
  padding: 28px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 25px;
}

.header-box h2 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #2374E7;
}

.header-box p {
  color: #666;
  font-size: 14px;
}

/* ===== FORM ===== */
.contact-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
}


.contact-form .row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}


.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.input-group label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #011F53;
}


.input-group input,
.input-group select,
.input-group textarea {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  background: #f9fbff;
  transition: 0.25s;
  cursor: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #2374E7;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(35,116,231,0.1);
  outline: none;
}


textarea {
  min-height: 130px;
  resize: none;
}


.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

button {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}


.cancel {
  background: #f1f5f9;
  border: none;
  cursor: pointer; /* 👈 better than none */
  outline: none;
}

.cancel:focus,
.cancel:active {
  outline: none;
  box-shadow: none;
}

.cancel:hover {
  background: #e2e8f0;
}


.submit {
  background: linear-gradient(135deg, #2374E7, #4f9cff);
  color: #fff;
  box-shadow: 0 6px 18px rgba(35,116,231,0.25);
  cursor: pointer; /* 👈 change this too (none is not good UX) */
  border: none;
  outline: none;
}

.submit:focus,
.submit:active {
  outline: none;
  box-shadow: 0 6px 18px rgba(35,116,231,0.25); /* prevents dark ring effect */
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(35,116,231,0.35);
}
/* ===== MAP ===== */
.map-wrap {
  height: 480px;
  margin-top: 0; /* no gap with form */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* ===== ADDRESS CARDS ===== */
.address-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 0 10px;
}

.address-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  border-left: 4px solid #2374E7;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.address-card h4 {
  margin: 0;
  font-size: 16px;
  color: #2374E7;
}

.country {
  display: block;
  font-weight: 600;
  margin: 6px 0 12px;
  color: #333;
}

.address-card p {
  margin: 6px 0;
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

/* hover */
.address-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .buttons {
    flex-direction: column;
  }

  button {
    width: 100%;
  }

  .address-wrapper {
    flex-direction: column;
  }
}



/* ─── HERO ─── */
.contact-hero {
    min-height: 65vh;
    padding-top: 72px;
    /* background: var(--green); */
    background: #F6F9FE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.7s ease both;
}

.contact-hero-heading {
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    color: #2374E7 !important;
}

.contact-hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: #011F53;
    letter-spacing: 0.01em;
    animation: fadeUp 0.7s 0.15s ease both;
}


.cards-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--green-faint);
    border: 1px solid rgba(76, 139, 76, 0.12);
    border-radius: 20px;
    padding: 40px 36px;
    width: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 16px 48px rgba(76, 139, 76, 0.14);
    border-color: rgba(76, 139, 76, 0.3);
    transform: translateY(-6px) !important;
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}


.map-wrap {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1.5px solid rgba(76, 139, 76, 0.12);
    /* margin-top: 12px; */
}

.map-open-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--green-brand);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, color 0.2s;
}


.map-open-btn:hover {
    background: var(--green-deep);
    color: var(--white);
}


.footer-ai a {
  position: relative;
  z-index: 10000;
}


.address-card a {
  color: #2374E7;
  text-decoration: none;
  font-weight: 500;
}

.address-card a:hover {
  text-decoration: underline;
}

.cursor-dot,
.cursor-ring {
  pointer-events: none;
}


.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-form {
  position: relative; 
  z-index: 1; 
}

.newsletter-form input {
  position: relative;
  z-index: auto; 

  background-color: transparent; 
  border: 1px solid rgba(255, 255, 255, 0.3); 
  color: white; 
  outline: none;
  padding: 10px 15px; 
  border-radius: 50px; 
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
  

.newsletter-form input:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-or-dropdown-container {
  position: relative; 
  z-index: 9999; 
}



.contact-right {
    padding: 72px 56px;
    background: #EDF4FE;
}

.form-heading {
    font-size: 2rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.form-sub {
    font-size: 0.85rem;
    color: #011F53;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-field {
    position: relative;
    border-bottom: 1.5px solid rgba(76, 139, 76, 0.15);
    margin-bottom: 32px;
}

.form-field:focus-within {
    border-bottom-color: var(--green-brand);
}

.field-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #011F53;
    pointer-events: none;
    transition: color 0.2s;
}

.textarea-field .field-icon {
    top: 14px;
    transform: none;
}

.form-field:focus-within .field-icon {
    color: var(--green-brand);
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none !important;
    outline: none !important;
    padding: 10px 10px 10px 28px;
    font-size: 0.9rem;
    color: #011F53;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color:#011F53;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2374E7;
    color: var(--white);
    border: none;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(26, 46, 26, 0.18);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.form-btn svg {
    transition: transform 0.2s;
}

.form-btn:hover {
    background: #011F53;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(76, 139, 76, 0.28);
}

.form-btn:hover svg {
    transform: translateX(4px);
}










