/**
* Theme Name: Futurity Child
* Description: This is a child theme of Futurity, generated by Merlin WP.
* Author: <a href="http://futurecap.com/about">Futurecap</a>
* Template: futurity-wp-theme-update-theme
* Version: 1.2.8
*/

:root {
  --green:       #35811C;
  --green-dark:  #2D5A28;
  --green-deep:  #1a3d0f;
  --green-light: #edf5e9;
  --green-mid:   #6aad4e;
  --gray-dark:   #48525B;
  --gray-mid:    #6b7280;
  --gray-light:  #f4f6f3;
  --white:       #ffffff;
  --text:        #1a1f16;
  --radius:      10px;
  --shadow:      0 2px 16px rgba(53,129,28,0.08);
  --shadow-md:   0 6px 32px rgba(53,129,28,0.13);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

.btn-fut {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 12px 28px; 
  border-radius: 6px;
  font-size: 15px; 
  font-weight: 700; 
  cursor: pointer;
  border: 2px solid transparent; 
  transition: var(--transition); 
  white-space: nowrap;
}

.btn-fut-primary { background: var(--green); color: white; border-color: var(--green); }
.btn-fut-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(53,129,28,0.3); }
.btn-fut-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-fut-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-fut-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-fut-ghost:hover { background: var(--green-light); }
.tag {
  display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 12px;
  font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-blue  { background: #e8f0fe; color: #1a56db; }
.tag-orange{ background: #fff3e0; color: #b45309; }

/* HEADER */

#menu-item-124 {
	background: var(--green) !important;
	margin-left: 65px;
    padding: 9px 20px;
	border-radius: 6px;
	transition: ease-in-out all 300ms;
}

#menu-item-124:hover {
	background: var(--green-dark) !important;
}

#menu-item-124:hover::after,
#menu-item-124:hover::before{
	opacity:0 !important;
}

#menu-item-124 a{
	color:#fff;
}

.main-menu .main-menu__list > li + li, .stricky-header .main-menu__list > li + li {
  margin-left: 45px !important;
}

.elementor-heading-title span{
  color: var(--green) !important;
}

/* HERO SECTION */
.hero {
  position: relative; min-height: 92vh;
  background: var(--green-deep);
  display: flex; align-items: center; overflow: hidden;
}
/* Subtle animated background pattern */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 70vw; height: 130%;
  background: radial-gradient(ellipse at center, rgba(53,129,28,0.18) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%;
  width: 50vw; height: 60%;
  background: radial-gradient(ellipse at center, rgba(106,173,78,0.1) 0%, transparent 70%);
  animation: pulse-glow 10s ease-in-out 2s infinite alternate;
}
@keyframes pulse-glow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}
/* Grid texture overlay */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding-top: 64px; padding-bottom: 64px;
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px; padding: 5px 14px 5px 8px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-mid); box-shadow: 0 0 6px var(--green-mid);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-title {
  font-size: clamp(42px, 5vw, 66px); font-weight: 900; line-height: 1.05;
  color: white; letter-spacing: -1px; margin-bottom: 20px;
}
.hero-title span { color: var(--green-mid); }
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.65;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-scroll {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 600;
}
.scroll-line {
  width: 32px; height: 1px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: rgba(255,255,255,0.7);
  animation: scan 2s ease-in-out infinite;
}
@keyframes scan { 0%{left:-100%} 100%{left:100%} }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-logo-ring {
  position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(53,129,28,0.25);
  animation: spin-slow 30s linear infinite;
}
.hero-logo-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-mid);
}
.hero-logo-ring-2 {
  position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(106,173,78,0.2);
  animation: spin-slow 20s linear infinite reverse;
}
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-logo-inner {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(106,173,78,0.15), inset 0 0 40px rgba(53,129,28,0.1);
}
.hero-logo-inner svg { width: 120px; height: 120px; filter: drop-shadow(0 0 20px rgba(106,173,78,0.3)); }

/* Floating badges */
.hero-badge {
  position: absolute; background: white; border-radius: 10px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); font-size: 13px; font-weight: 700;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero-badge-label { color: var(--gray-mid); font-size: 11px; font-weight: 600; }
.hero-badge-value { color: var(--text); font-size: 15px; font-weight: 800; }
.hero-badge-1 { top: 5%; right: -2%; animation-delay: 0s; }
.hero-badge-2 { bottom: 12%; left: -6%; animation-delay: 1.5s; }
.hero-badge-3 { top: 45%; right: -8%; animation-delay: 0.8s; }
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* ABOUT */
.about-timeline {
  position: absolute; 
	bottom: -24px; 
	right: -24px;
  background: white; 
	border-radius: 12px; 
	padding: 18px 22px;
  box-shadow: var(--shadow-md);     min-width: 220px;
}

.timeline-title { 
	font-size: 11px; 
	font-weight: 800; 
	text-transform: uppercase; letter-spacing: 0.08em; 
	color: var(--gray-mid); 
	margin-bottom: 12px; 
}

.timeline-step {
  display: flex; 
	align-items: center; 
	gap: 10px;
  font-size: 13px; 
	font-weight: 600; 
	color: var(--text); 
	padding: 5px 0;
  position: relative;
}

.timeline-step:not(:last-child) { border-bottom: 1px solid #f0f0f0; }

.timeline-dot {
  width: 8px; 
	height: 8px; 
	min-width: 8px; 
	border-radius: 50%;
  background: var(--green); 
	box-shadow: 0 0 0 3px var(--green-light);
}

.timeline-year { 
	font-size: 11px; 
	color: var(--gray-mid); 
	font-weight: 600; 
	margin-left: auto; 
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter-form p{ display: flex; gap: 12px; margin:0;}
.newsletter-input {
  flex: 1; padding: 14px 18px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: white; font-family: var(--font); font-size: 15px;
  outline: none; transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { border-color: var(--green-mid); background: rgba(255,255,255,0.15); }
.newsletter-btn {
  padding: 14px 28px; border-radius: 6px; border: none; cursor: pointer;
  background: white; color: var(--green-dark); font-family: var(--font); font-size: 15px; font-weight: 800;
  transition: var(--transition); white-space: nowrap;
}
.newsletter-btn:hover { background: var(--green-light); transform: translateY(-1px); }

@media (max-width: 767px) {
	.newsletter-form p{ display: block; gap: 12px; margin:0;}
	
	.newsletter-input {
     width:100%;
		margin-bottom:10px;
    }
}
/* CONTACT FORM */
.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1:nth-child(1) p{
  margin-right: 10px;
}

.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1:nth-child(2) p{
  margin-left: 10px;
}

.wdt-custom-contact-page-form .wpcf7-form .c-row, 
.wdt-custom-contact-page-form .wpcf7-form .c-row p {
  display: flex;
}

.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1, 
.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1 p,
.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row2 p {
  display: block;
  width: calc(100% - 10px);
}

.wdt-custom-contact-page-form .wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 0 !important;
}

.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1 .wpcf7-form-control-wrap .wpcf7-form-control[class*="wpcf7-text"], 
.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1 .wpcf7-form-control-wrap .wpcf7-form-control[class*="wpcf7-select"] {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border-width: 1px;
  padding: 5px 10px;
  border-color: var(--green);
  color: var(--green);
	height: 46px;
}

.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row2 .wpcf7-form-control-wrap .wpcf7-form-control[class*="wpcf7-textarea"] {
	-webkit-border-radius: 10px;
  border-radius: 10px;
  border-width: 1px;
  padding: 5px 10px;
  border-color: var(--green);
  color: var(--green);
  height: 130px;
  resize: vertical;
}

.wdt-custom-contact-page-form .wpcf7-form .c-row .c-row1 .wpcf7-form-control-wrap .wpcf7-form-control[class*="wpcf7-text"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(53,129,28,0.1);
}

.wdt-custom-contact-page-form .wpcf7-form .contact-btn .wcf-btn-default{
  padding: 17px 35px;
  border: 1px solid #294897;
  overflow: hidden;
  z-index: 0;
  background: transparent;
  color: #294897;
  border-radius: 40px;
  font-size: 20px;
  position: relative;
  overflow: visible;
  transition: ease-in-out all 300ms;
  margin-top:40px;
}

.wdt-custom-contact-page-form .wpcf7-form .contact-btn .wcf-btn-default:hover{
	left:55px;
}

.wdt-custom-contact-page-form .wpcf7-form .contact-btn .wcf-btn-default > svg{
  padding: 12px 12px;
  position: absolute;
  top: 0;
  right: -55px;
  height: 30px;
  font-size: 50px;
  z-index: 99;
  box-sizing: content-box;
  width: 30px;
  color: #fff !important;
  fill: #fff !important;
  background: #294897;
  border-radius: 40px;
  transition: ease-in-out all 300ms;
}

.wdt-custom-contact-page-form .wpcf7-form .contact-btn .wcf-btn-default:hover > svg {
  left:-55px;
}