/*
Theme Name: WP_Ogitive
Theme URI: http://ww.ogitive.com
Author: Ogitive
Author URI: http://www.ogitive.com
Description: Blank template
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpog
Tags:
*/

/* ===== CSS Reset & Base Styles ===== */

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --sand: #FAF6F0;
    /*--primary-teal: #18D3B4;*/
    --primary-teal: #00E0B4;
    --dark-teal: #1F9B86;
    --dark-green: #163E34;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #333333;

    /* Typography */
    --font-heading: 'DM Serif Text', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --container-max: 1440px;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Border radius */
    --base-border-radius: 15px;
}

html {
    scroll-behavior: smooth;
    /* Prevent horizontal overflow at root level */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    /* Ensure body doesn't exceed viewport width */
    max-width: 100vw;
    position: relative;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Text', serif;
    font-weight: 400;
    line-height: 1.2;
}
a:hover{
    text-decoration: none;
}
strong{
	font-weight: 900;
}
/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: var(--container-max);
    width: calc(100% - 6rem);
    background-color: var(--white);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: none;
    border-radius: 20px;
    transition: all 0.15s ease;
}

.navbar.scrolled {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: none;
    width: 100%;
    padding: 1.2rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    border-radius: 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 2rem;
}

.nav-container a {
    line-height: 1;
}

.nav-left,
#menu-navigation {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-start;
}

.nav-logo {
    height: 87px;
    width: auto;
    justify-self: center;
    transition: height 0.3s ease, margin-bottom 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 50px;
    margin-bottom: 0;
}

.nav-right {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.navbar.scrolled .nav-right {
    align-self: center;
    margin-top: 5px;
    margin-bottom: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.3rem;
    transition: var(--transition);
    line-height: 1;
}

.nav-link:hover {
    color: var(--dark-green);
}

.nav-btn-login {
    font-size: 1.3rem;
    background-color: var(--sand);
    color: var(--dark-green);
    padding: 0.75rem 4rem;
    border-radius: var(--base-border-radius) 0 var(--base-border-radius) 0;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-btn-login:hover {
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.nav-btn-demo {
    font-size: 1.3rem;
    background-color: var(--primary-teal);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: var(--base-border-radius) 0 var(--base-border-radius) 0;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn-demo:hover {
    color: var(--white);
    background-color: var(--dark-teal);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Responsive Styles ===== */
/* On smaller screens, navbar should start in "scrolled" state */
@media (max-width: 992px) {
    .navbar {
        top: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    }

    .nav-logo {
        height: 50px;
    }

    .nav-right {
        margin-top: 5px;
        margin-bottom: 0;
    }
}
/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--sand);
    padding-top: 142px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 3rem;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.hero-content {
    z-index: 2;
    padding-right: 1rem;
}

.hero-subtitle {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.4vw, 3.8rem);
    color: var(--dark-green);
    margin-bottom: 3rem;
    line-height: 1.15;
    font-weight: 400;
    font-family: 'DM Serif Text', serif;
}

.hero-description {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4rem;
    width: 100%;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--primary-teal);
    color: var(--text-dark);
    padding: 1.0rem 1.7rem 1.0rem 2.5rem;
    border-radius: var(--base-border-radius) 0 var(--base-border-radius) 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-cta-arrow {
    line-height: 1;
}

.hero-cta:hover {
    color: var(--white);
    background-color: var(--dark-teal);
}

.hero-cta:hover .hero-cta-arrow path {
    stroke: var(--white);
    transition: stroke 0.3s ease;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.hero-image img {
	position: relative;
	top: -30px;
    width: 120%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
/* ===== Dark Info Section ===== */
.dark-info {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 5rem 3rem;
}

.dark-info-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    font-size: 2.5rem;
    padding: 0 3rem
}

.dark-info-box {
    /* background-color: rgba(24, 211, 180, 0.1); */
    /* background: linear-gradient(to right, #156b5d, var(--dark-teal)); */
    background: linear-gradient(to right, #156b5d, var(--primary-teal));
    padding: 3rem;
    border-radius: 15px;
    /* border-left: 4px solid var(--primary-teal); */
}

.dark-info-box h3 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.dark-info h2{
	font-size: 1.5em;
}
.dark-info-box .check-line {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    font-size: 1.4rem;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.dark-info-box .check-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10L8 15L17 5' stroke='%2318D3B4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background-color: var(--white);
    padding: 5rem 0;
}

.how-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 8rem;
}

.how-item {
    text-align: left;
}

/* Zig-zag positioning with specific offsets for each item */
.how-item:nth-child(2) {
    margin-top: 18rem;
}

.how-item:nth-child(3) {
    margin-top: -18rem;
}

.how-item:nth-child(4) {
    margin-top: 12rem;
}

.how-image-container {
border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}
}

.how-image-container img {
    max-width: 100%;
    height: auto;
}

.how-item h3 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: 'DM Serif Text', serif;
}

.how-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.2rem;
}

/* ===== Wing Detail Section ===== */
.wing-detail {
    background-color: var(--sand);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.wing-container {
    max-width: var(--container-max);
    margin: 0 auto 26rem;
    padding: 0 3rem;
}

.wing-image {
    position: absolute;
    bottom: -320px;
    right: -190px;
    width: 1430px;
    max-width: none;
    z-index: 0;
    /* Prevent overflow on smaller screens */
    pointer-events: none;
}

.wing-image img {
    width: 100%;
    height: auto;
    display: block;
}

.wing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.wing-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark-green);
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.wing-content ul {
    list-style: none;
    padding: 0;
    position: relative;
    top: 10px;
}

.wing-content li {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: var(--font-body);
}

.wing-content li::before {
    content: '•';
    color: var(--dark-green);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 0.8;
}

.wing-content li strong {
    color: var(--dark-green);
}

/* ===== Content Sections ===== */
.content-section {
    padding: 6rem 3rem;
    background-color: var(--white);
}

.content-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--base-border-radius);
    overflow: hidden;
    background-color: var(--sand);
    height: 400px;
    width: calc(100% + 2.5rem);
}

.content-grid .content-image {
    margin-right: -2.5rem;
}

.content-grid.reverse .content-image {
    margin-right: 0;
    margin-left: -2.5rem;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text {
    font-size: 1.2rem;
}

.content-grid .content-text {
    padding-left: 3rem;
    padding-right: 3rem;
}

.content-grid.reverse .content-text {
    padding-left: 3rem;
    padding-right: 3rem;
}

.content-text h3 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    color: var(--dark-green);
    margin-bottom: 2rem;
}

.content-text p {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.5;
}

.content-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.content-list li {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}
.content-list li:last-child {
    margin-bottom: 0;
}

.content-list li::before {
    content: '•';
    color: var(--dark-green);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 0.8;
}

.content-list li b,
.content-list li strong {
    color: var(--dark-green);
}

/* ===== Use Cases Section ===== */
.use-cases-section {
    background-color: var(--sand);
    padding: 1rem 3rem 5rem;
}

.use-cases-container {
    max-width: var(--container-max);
    margin: 0 auto 2rem;
    padding: 0 3rem;
}

.use-cases-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.use-cases-section .section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark-green);
    margin-bottom: 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.use-case-card {
    background-color: var(--white);
    border-radius: var(--base-border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.use-case-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.use-case-content {
    padding: 3rem;
}

.use-case-content h3 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.use-case-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-content li {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.use-case-content li:last-child {
    margin-bottom: 0;
}

.use-case-content li::before {
    content: '•';
    color: var(--dark-green);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
}
/* ===== Features Cards ===== */
.features {
    background-color: var(--dark-green);
    color-scheme: light;
    padding: 6rem 3rem;
}

.features-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
}

.features .section-header h2,
.features .section-subheader h3,
.features .section-header p {
    color: var(--white);
}
.features .section-subheader h3 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin: 3rem 0 1rem;
}
.features .section-subheader p {
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--base-border-radius);
    text-align: center;
    border: 1px solid rgba(24, 211, 180, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom left, var(--primary-teal) 0%, #1F9B86 50%, #156b5d 100%);
    border-radius: var(--base-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-card h3 {
    color: var(--dark-green);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.7;
}

/* Features CTA Button */
.features-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.features-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--primary-teal);
    color: var(--text-dark);
    padding: 1.0rem 1.7rem 1.0rem 2.5rem;
    border-radius: var(--base-border-radius) 0 var(--base-border-radius) 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.features-cta:hover {
    color: var(--white);
    background-color: var(--dark-teal);
}

.features-cta:hover .hero-cta-arrow path {
    stroke: var(--white);
    transition: stroke 0.3s ease;
}
/* ===== FAQ Section ===== */
.faq-section {
    background-color: var(--white);
    padding: 6rem 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    /*margin: 0 auto;*/
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark-green);
}

.faq-item {
    border-bottom: 1px solid var(--dark-green);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 0;
    padding: 1.5rem 0;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--dark-teal);
}

.faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-left: 2rem;
    transition: transform 0.3s linear;
}

.faq-chevron svg {
    width: 100%;
    height: 100%;
    stroke: var(--dark-green);
    transition: var(--transition);
}

.faq-question:hover .faq-chevron svg {
    stroke: var(--dark-teal);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    visibility: hidden;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s linear, padding 0.3s linear, visibility 0.3s ease;
    padding: 0;
}

.faq-answer > * {
    min-height: 0;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.faq-item.active .faq-answer {
	visibility: visible;
    grid-template-rows: 1fr;
    padding: 0 0 1.5rem 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--dark-green);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 3rem;
}

.cta-content {
    margin-top: 4rem;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.cta-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--base-border-radius);
    border: 1px solid rgba(24, 211, 180, 0.3);
}

.form-required-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label:not(.form-checkbox-label) {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--base-border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
    border-color: var(--primary-teal) !important;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox-group {
    margin-bottom: 2rem;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.2;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-teal);
}

.form-checkbox-label a {
    color: var(--primary-teal);
    text-decoration: underline;
    transition: var(--transition);
}

.form-checkbox-label a:hover {
    color: #20ebc9;
}

.form-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1.0rem 4.7rem 1.0rem 2.5rem;
    border: none;
    border-radius: var(--base-border-radius) 0 var(--base-border-radius) 0;
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.form-button-arrow {
    line-height: 1;
}


.form-button:hover {
    background-color: var(--dark-teal);
    color: var(--white);
}

.form-button:hover .form-button-arrow path {
    stroke: var(--white);
    transition: stroke 0.3s ease;
}

.form-button:disabled {
    background-color: rgba(255, 255, 255, 0.3);
    color: rgba(26, 26, 26, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.form-button:disabled:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: rgba(26, 26, 26, 0.5);
    transform: none;
}

.form-button:disabled .form-button-arrow path {
    stroke: rgba(0, 196, 154, 0.5);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}
/* ===== Footer ===== */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6rem;
    margin-bottom: 3rem;
    justify-content: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 125px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: var(--primary-teal);
    transition: var(--transition);
    display: inline-flex;
}

.footer-social-link:hover {
    color: #20ebc9;
    transform: translateY(-2px);
}

.footer-right {
    display: flex;
    justify-content: flex-start;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    align-items: baseline;
}

.footer-label {
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.2;
}

.footer-contact-link {
    font-size: 1.3rem;
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: #20ebc9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--white);
}

.footer-copyright p {
    margin: 0;
    font-size: 1.3rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--primary-teal);
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #20ebc9;
}

.footer-dragonfly {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer-dragonfly img {
height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.7) 40%, black 60%); */
    /* -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.7) 40%, black 60%); */
    transform: rotate(22deg);
    opacity: 0.77;
}
/* ===== Animations CSS ===== */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Scroll Progress Indicator ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--dark-teal));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    will-change: transform;
}

/* ===== Page Load Animations ===== */
body {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== Hero Section Animations ===== */

/* Hero content fade-in and slide-up */
.hero-content {
    animation: slideUpFadeIn 0.8s ease-out 0.2s both;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero image parallax container */
.hero-image {
    transition: transform 0.5s ease-out;
    will-change: transform;
}

/* Floating animation for dragonfly */
.hero-image img {
    animation: floatingDragonfly 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatingDragonfly {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
}

/* ===== Scroll-Triggered Animations ===== */

/* Initial state for elements that will animate in */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when in viewport */
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for groups of items */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* Fade-in variation for sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Feature Cards 3D Tilt Effect ===== */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 196, 154, 0.15);
}

/* Add subtle 3D effect on icon */
.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateZ(20px) scale(1.05);
}

/* ===== Enhanced Button & CTA Interactions ===== */

/* Hero CTA enhancements with glow */
.hero-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(24, 211, 180, 0.3);
    animation: ctaGlowPulse 3s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
                    0 0 30px rgba(24, 211, 180, 0.3);
    }
    50% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
                    0 0 45px rgba(24, 211, 180, 0.5),
                    0 0 60px rgba(24, 211, 180, 0.2);
    }
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(24, 211, 180, 0.6),
                0 0 80px rgba(24, 211, 180, 0.3);
    animation: none;
}

.hero-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Arrow animation on hover */
.hero-cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-arrow {
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Features CTA with down arrow */
.features-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(24, 211, 180, 0.3);
    animation: ctaGlowPulse 3s ease-in-out infinite;
}

.features-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(24, 211, 180, 0.6),
                0 0 80px rgba(24, 211, 180, 0.3);
    animation: none;
}

.features-cta:hover .hero-cta-arrow {
    animation: arrowBounceDown 0.6s ease infinite;
}

@keyframes arrowBounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Nav buttons */
.nav-btn-demo,
.nav-btn-login {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn-demo:hover,
.nav-btn-login:hover {
    transform: translateY(-2px);
}

/* Form button enhancements */
.form-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.form-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.form-button:hover::before {
    width: 400px;
    height: 400px;
}
.submit-div{
	position: relative;
	width: fit-content;
}
.submit-div::after{
    position: absolute;
    content: "";
    right: 93px;
    background: url('assets/img/arrow.svg') top right no-repeat;
    width: 34px;
    height: 34px;
    top: 14px;
    opacity: 1;
    display: inline-block;
    transition: 0.3s ease; 
}
 .submit-div.non-active::after{
	opacity: 0.5;
}
@keyframes shake-icon {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.submit-div:hover::after {
    animation: shake-icon 0.6s ease infinite;
}
.form-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.form-button:active {
    transform: translateY(0) scale(0.98);
}

.form-button-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.form-button:hover .form-button-arrow {
    animation: arrowBounce 0.6s ease infinite;
}

/* ===== Number Count-Up Animation ===== */
.count-up {
    font-weight: inherit;
}

/* Dark info box items fade in */
.check-line {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.check-line.animated {
    opacity: 1;
    transform: translateX(0);
}

.check-line:nth-child(1) { transition-delay: 0.1s; }
.check-line:nth-child(2) { transition-delay: 0.2s; }
.check-line:nth-child(3) { transition-delay: 0.3s; }
.check-line:nth-child(4) { transition-delay: 0.4s; }

/* ===== Use Case Cards ===== */
.use-case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.use-case-image {
    overflow: hidden;
}

.use-case-image img {
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.08);
}

/* ===== Content Section Images ===== */
.content-image {
    overflow: hidden;
    border-radius: var(--base-border-radius);
}

.content-image img {
    transition: transform 0.5s ease;
}

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

/* ===== Form Enhancements ===== */

/* Floating labels */
.form-group {
    position: relative;
}

.form-group label:not(.form-checkbox-label) {
    position: absolute !important;
    left: 1.5rem;
    top: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    background: transparent;
    padding: 0 0.5rem;
    margin: 0 !important;
    display: inline-block !important;
}

.form-input:focus + label:not(.form-checkbox-label),
.form-input:not(:placeholder-shown) + label:not(.form-checkbox-label),
.form-input.has-value + label:not(.form-checkbox-label) {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--primary-teal);
    background: var(--dark-green);
}

textarea.form-input:focus + label:not(.form-checkbox-label),
textarea.form-input:not(:placeholder-shown) + label:not(.form-checkbox-label),
textarea.form-input.has-value + label:not(.form-checkbox-label) {
    top: -0.7rem;
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(24, 211, 180, 0.1);
    outline: none;
}

.form-input.error,
.form-input.wpcf7-not-valid {
    border-color: #ef4444;
}

.form-input.success {
    border-color: var(--primary-teal);
}

/* Success animation */
@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 211, 180, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(24, 211, 180, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(24, 211, 180, 0);
    }
}

.form-success {
    animation: successPulse 1s ease;
}

/* ===== Navigation Blur Effect ===== */
.navbar.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Nav links smooth transitions */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Smooth Transitions for All Interactive Elements ===== */
a, button {
    transition: all 0.3s ease;
}

/* ===== Footer Dragonfly Parallax ===== */
.footer-dragonfly {
    transition: transform 0.3s ease-out;
}

/* ===== Gradient Mesh Backgrounds ===== */

/* Dark Info Section Mesh */
.dark-info {
    position: relative;
}

.dark-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(24, 211, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(31, 155, 134, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(24, 211, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: meshMove 20s ease infinite;
}

@keyframes meshMove {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

/* CTA Section Mesh */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(24, 211, 180, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(31, 155, 134, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(24, 211, 180, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: meshMoveAlt 18s ease infinite;
}

/* CTA Content Decorative Element */
@media (min-width: 1200px) {
    .cta-content::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 2rem;
        width: 200px;
        height: 200px;
        background: rgba(24, 211, 180, 0.15);
        border-radius: 10px;
        pointer-events: none;
        z-index: 0;
        mix-blend-mode: screen;
    }

    .cta-content::before {
        content: '';
        position: absolute;
        bottom: 1rem;
        left: 8rem;
        width: 150px;
        height: 180px;
        background: rgba(31, 155, 134, 0.2);
        border-radius: 15px;
        pointer-events: none;
        z-index: 0;
        mix-blend-mode: screen;
        transform: rotate(-5deg);
    }

    .cta-content {
        position: relative;
    }

    .cta-content > * {
        position: relative;
        z-index: 1;
    }
}

@keyframes meshMoveAlt {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
}

/* Features Section Mesh */
.features {
    position: relative;
}

.features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(24, 211, 180, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(31, 155, 134, 0.06) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.8;
    z-index: 0;
}

/* ===== Geometric Accent Shapes ===== */

/* Hero Section Geometric Shapes */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 211, 180, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -10%;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 15s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

/* Dark Info Section Shapes */
.dark-info::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(24, 211, 180, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 0;
    animation: morphShape 20s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* Features Section Geometric Accent */
.features-grid::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(24, 211, 180, 0.08) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -50px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
    animation: rotateShape 25s linear infinite;
}

.features-grid {
    position: relative;
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== Curved Section Dividers ===== */

/* Hero to Dark Info curved divider */
.hero {
    position: relative;
    padding-bottom: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--dark-green);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 1;
}

/* Dark Info to How It Works curved divider */
.dark-info {
    position: relative;
    padding-bottom: 6rem;
}

/* How It Works to Wing Detail curved divider */
.how-it-works {
    position: relative;
}

/* Features to Content Section curved divider */
.features {
    position: relative;
    padding-bottom: 6rem;
}

/* Content Section to Use Cases curved divider */
.content-section {
    position: relative;
    padding-bottom: 6rem;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--sand);
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 1;
}

/* Use Cases to FAQ curved divider */
.use-cases-section {
    position: relative;
    /*padding-bottom: 6rem;*/
}

/* FAQ to CTA curved divider */
.faq-section {
    position: relative;
    padding-bottom: 6rem;
}

/* Ensure content stays above dividers */
.hero-container,
.dark-info-container,
.how-container,
.features-container,
.content-container,
.use-cases-container,
.faq-container,
.cta-container {
    position: relative;
    z-index: 2;
}

.features-grid,
.feature-card {
    position: relative;
    z-index: 3;
}
.form-group.active label {
    top: -0.7rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--primary-teal);
    background: var(--dark-green);
}
/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .hero::before {
        height: 50px;
    }
    .content-section::after {
        height: 50px;
    }
}


/*Policy page*/
section.policy-section{
    background: var(--sand);
    padding: 300px 0 100px;
}
.policy-container{
        max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    padding: 0 3rem;
}
.privacy-header h1{
    font-size: 52px;
    font-weight: 400;
    color: var(--dark-green);

}
.policy-container h3{
      font-size: 40px;
    font-weight: 400;
    color: var(--dark-green);  
	margin:40px 0;
}
.policy-container p,
.policy-container ul li,
.policy-container ol li{
    font-size: 20px;
	    line-height: 30px;
    margin-bottom: 20px;
}
  .policy-container ul li::marker {
        font-size: 20px; 
    }
.policy-container ul{
    list-style: disc;
	padding-left:30px;
    margin-bottom: 40px;
}
.policy-container a{
    color: var(--text-dark);
    text-decoration: underline;
}
.update-info{
    font-size: 20px;
    margin: 20px 0 40px;
}
