/*
* Solana Green Energy — custom styles
* Layered on top of main.css for B2B single-page sections.
*/

:root {
    --solana-primary: #1a7a3c;
    --solana-dark: #0f1f17;
    --solana-accent: #f4b400;
}

/* ---------- Hero ---------- */
.hero-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.cp-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 45px;
    padding: 0;
    list-style: none;
}
.hero-highlight-list li {
    position: relative;
    padding-right: 40px;
}
.hero-highlight-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}
.hero-highlight-list .number {
    color: #fff;
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hero-highlight-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: block;
    max-width: 200px;
}

/* ---------- Company snapshot ---------- */
.snapshot-card {
    height: 100%;
    padding: 38px 32px;
    border: 1px solid #e6eae8;
    border-radius: 14px;
    background: #fff;
    transition: all 0.3s ease;
}
.snapshot-card:hover {
    box-shadow: 0 20px 45px rgba(15, 31, 23, 0.08);
    transform: translateY(-6px);
}
.snapshot-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(26, 122, 60, 0.1);
    color: var(--solana-primary);
    font-size: 26px;
    margin-bottom: 22px;
}
.snapshot-card .title {
    font-size: 22px;
    margin-bottom: 12px;
}

/* ---------- Featured project dashboard ---------- */
.project-dashboard {
    margin-top: 20px;
}
.spec-card {
    height: 100%;
    padding: 30px 26px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e6eae8;
    border-left: 4px solid var(--solana-primary);
    transition: all 0.3s ease;
}
.spec-card:hover {
    box-shadow: 0 18px 40px rgba(15, 31, 23, 0.1);
    transform: translateY(-5px);
}
.spec-icon {
    color: var(--solana-primary);
    font-size: 24px;
    margin-bottom: 16px;
}
.spec-label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a8a82;
    margin-bottom: 8px;
}
.spec-value {
    font-size: 20px;
    line-height: 1.35;
    margin: 0;
    color: var(--solana-dark);
}
.spec-card-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: var(--solana-dark);
    border-left-color: var(--solana-accent);
}
.spec-card-cta .spec-label {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Lead generation form ---------- */
.lead-form-wrap {
    background: #fff;
    border: 1px solid #e6eae8;
    border-radius: 16px;
    padding: 44px;
    box-shadow: 0 24px 60px rgba(15, 31, 23, 0.06);
}
.lead-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--solana-dark);
    margin-bottom: 8px;
}
.lead-field label i {
    color: var(--solana-primary);
    font-size: 14px;
}
.lead-field .req {
    color: #c82828;
    margin-left: -4px;
}
.field-input {
    position: relative;
    display: flex;
    align-items: center;
}
.field-input .field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa8a1;
    font-size: 15px;
    pointer-events: none;
    transition: color 0.25s ease;
}
.field-input input,
.field-input textarea {
    width: 100%;
    height: 45px;
    padding: 0 18px 0 44px;
    border: 1px solid #dfe5e2;
    border-radius: 10px;
    background: #f7f9f8;
    font-size: 15px;
    color: var(--solana-dark);
    transition: all 0.25s ease;
}
.field-input.has-suffix input {
    padding-right: 58px;
}
.field-input.field-textarea {
    align-items: flex-start;
}
.field-input.field-textarea .field-icon {
    top: 18px;
    transform: none;
}
.field-input textarea {
    height: auto;
    padding: 16px 18px 16px 44px;
    resize: vertical;
}
.field-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #7a8a82;
    background: #eef3f0;
    padding: 4px 10px;
    border-radius: 6px;
    pointer-events: none;
}
.field-input input:focus,
.field-input textarea:focus {
    outline: none;
    border-color: var(--solana-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 122, 60, 0.12);
}
.field-input input:focus ~ .field-suffix {
    color: var(--solana-primary);
}
.field-input:focus-within .field-icon {
    color: var(--solana-primary);
}
.lead-form button.cp-primary-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}
.lead-form .lead-submit i {
    margin-right: 4px;
}
.lead-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    font-size: 13px;
    color: #7a8a82;
}
.lead-note i {
    color: var(--solana-primary);
}
.lead-desc {
    margin: 24px 0;
    color: #5b6b63;
}
.lead-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lead-contact-list li {
    margin-bottom: 14px;
    color: var(--solana-dark);
}
.lead-contact-list i {
    color: var(--solana-primary);
    margin-right: 10px;
}
.lead-contact-list a {
    color: inherit;
}
#form-messages {
    display: none;
    margin-bottom: 18px;
    border-radius: 10px;
    padding: 14px 18px;
}
#form-messages.alert-success {
    display: block;
    background: rgba(26, 122, 60, 0.1);
    color: var(--solana-primary);
}
#form-messages.alert-danger {
    display: block;
    background: rgba(200, 40, 40, 0.1);
    color: #c82828;
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    animation: solanaPulse 2.4s infinite;
    transition: transform 0.25s ease;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}
@keyframes solanaPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 767px) {
    .hero-highlight-list { gap: 24px; }
    .hero-highlight-list .number { font-size: 30px; }
    .lead-form-wrap { padding: 26px; }
}




input::placeholder {
    color: #666;
    font-size: 14px;

}