﻿/* =========================
   ROOT COLOR THEME
   ========================= */
:root {
    /* Primary Brand Colors */
    --primary-color: #2E7D32;      /* Green */
    --secondary-color: #B86321;    /* Yellow */
    --accent-color: #1565C0;       /* Blue */

    /* Neutral Colors */
    --dark-color: #1e1e1e;
    --text-color: #333333;
    --muted-text: #666666;
    --light-bg: #f9fafb;
    --white: #ffffff;

    /* UI Colors */
    --border-color: #e0e0e0;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   FONT DEFINITIONS
   ========================= */

/* Playwrite NZ Basic */
.playwrite-nz-basic-heading {
    font-family: "Playwrite NZ Basic", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Exo */
.exo-body {
    font-family: "Exo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* =========================
   GLOBAL RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Exo", sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.7;
}
h1, h2, h3 {
    font-family: "Playwrite NZ Basic", cursive;
    color: var(--primary-color);
}

h1 {
    font-size: 48px;
    font-weight: 400;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}
p {
    font-family: "Exo", sans-serif;
    font-size: 16px;
    color: var(--text-color);
}
.text-muted {
    font-size: 14px;
    color: var(--muted-text);
}
.btn-primary {
    font-family: "Exo", sans-serif;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--accent-color);
}
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}
/* =========================
   CUT LINE TOPBAR
   ========================= */
.topbar-cut {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: var(--white);
}

/* Center horizontal line */
.topbar-cut::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

/* Left & Right */
.topbar-left a,
.topbar-right a {
    font-family: "Exo", sans-serif;
    font-size: 14px;
    color: var(--muted-text);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.topbar-left a:hover,
.topbar-right a:hover {
    color: var(--primary-color);
}

/* Center Logo */
.topbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 8px 30px;
    z-index: 3;
}

.brand-logo {
    font-family: "Playwrite NZ Basic", cursive;
    font-size: 32px;
    color: var(--primary-color);
    letter-spacing: 1.5px;
}
/* =========================
   INLINE EXPAND HEADER
   ========================= */
.inline-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.inline-nav {
    max-width: 1200px;
    margin: auto;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

/* Normal items */
.nav-item,
.expand-trigger {
    font-family: "Exo", sans-serif;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

.nav-item:hover,
.expand-trigger:hover {
    color: var(--secondary-color);
}

/* =========================
   INLINE EXPAND PANEL
   ========================= */
.nav-expand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Hidden by default */
.expand-panel {
    display: flex;
    gap: 18px;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 1.3s ease, opacity 1.2s ease;
}

/* Reveal inline */
.nav-expand:hover .expand-panel {
    max-width: 500px;
    opacity: 1;
}

/* Panel links */
.expand-panel a {
    font-family: "Exo", sans-serif;
    font-size: 14px;
    color: var(--muted-text);
    text-decoration: none;
    white-space: nowrap;
}

.expand-panel a:hover {
    color: var(--primary-color);
}
/* hide toggle on desktop explicitly */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}
@media (max-width: 768px) {

    /* ---------- TOPBAR ---------- */
    .topbar-cut { 
        height: auto;
        padding: 14px 16px;
        gap: 6px;
        text-align: center;
    }
    .topbar-cut a{
        font-size: 12px;
    }
    .topbar-cut span{
        font-size: 16px;
    }
    .topbar-cut::before {
        display: none;
    }

    .topbar-center {
        position: static;
        transform: none;
        margin: 6px 0;
    }

    .brand-logo {
        font-size: 26px;
    }

    /* ---------- HEADER ---------- */
    .inline-header {
        background: var(--white);
        position: relative;
        z-index: 100;
    }

    /* ✅ TOGGLE — FORCE VISIBILITY */
    .mobile-toggle {
        display: flex;               /* <-- FIX */
        flex-direction: column;
        justify-content: center;
        width: 32px;
        margin: 0px 20px;
        cursor: pointer;
    }

    .mobile-toggle span {
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* ---------- NAV ---------- */
    .inline-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s ease;
    }

    .inline-nav.active {
        max-height: 600px;
    }

    .nav-item {
        padding: 14px;
        text-align: center;
        border-top: 1px solid var(--border-color);
    }

    /* ---------- SERVICES ---------- */
    .nav-expand {
        flex-direction: column;
        padding: 14px;
        border-top: 1px solid var(--border-color);
        align-items: center;
    }

    .expand-panel {
        flex-direction: column;
        max-width: 100%;
        opacity: 1;
        gap: 10px;
        margin-top: 8px;
    }

    .expand-panel a {
        text-align: center;
    }

    /* ---------- TOGGLE ANIMATION ---------- */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
.brand-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Adjust logo size on mobile */
@media (max-width: 768px) {
    .brand-logo-img {
        height: 38px;
    }
}
/* =========================
   DESKTOP SAFETY
   ========================= */
.mobile-header-row,
.brand-logo-mobile {
    display: none;
}

/* =========================
   MOBILE HEADER FIX
   ========================= */
@media (max-width: 768px) {

    /* hide topbar logo completely on mobile */
    .topbar-center {
        display: none !important;
    }

    /* show mobile header row */
    .mobile-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
    }

    /* mobile logo */
    .brand-logo-mobile {
        display: block;
        height: 60px;
        width: auto;
        object-fit: contain;
    }

    /* toggle alignment */
    .mobile-toggle {
        display: flex;
        margin: 0;
    }

    /* menu hidden by default */
    .inline-nav {
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        transition: max-height 0.4s ease;
    }

    /* menu opens */
    .inline-nav.active {
        max-height: 600px;
    }

    .nav-item,
    .nav-expand {
        border-top: 1px solid var(--border-color);
        padding: 14px;
        text-align: center;
    }

    .expand-panel {
        flex-direction: column;
        opacity: 1;
        max-width: 100%;
        margin-top: 8px;
    }
}
/* =========================
   HERO SLIDER (AUTO HEIGHT)
   ========================= */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000; /* prevents flash gap */
}

/* Slides container */
.slides {
    position: relative;
    width: 100%;
}

/* Individual slide */
.slide {
    display: none;
    width: 100%;
    position: relative;
}

.slide.active {
    display: block;
}

/* FULL IMAGE – NO GAPS – NO CROP */
.slide img {
    width: 100%;
    height: auto;          /* image defines height */
    display: block;        /* removes default spacing */
}

/* =========================
   TEXT OVERLAY
   ========================= */
.slide-content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    max-width: 520px;
    color: #ffffff;
    z-index: 5;
    animation: slideUp 1s ease;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.5;
}

/* Text animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   PREV / NEXT BUTTONS
   ========================= */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    font-size: 30px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

/* =========================
   DOTS
   ========================= */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ffffff;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */
@media (max-width: 768px) {

    .slide-content {
        left: 5%;
        bottom: 10%;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slider-btn {
        font-size: 24px;
        padding: 8px 12px;
    }
}
.about-canvas {
    position: relative;
    background: #ffffff;
    padding-bottom: 0px;
}

/* image canvas */
.canvas-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.canvas-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* floating slab */
.info-slab {
    max-width: 760px;
    margin: -90px auto 0;
    background: #ffffff;
    border: 2px solid #2E7D32;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.info-slab h2 {
    font-size: 38px;
    margin-bottom: 8px;
}

.slab-tag {
    display: block;
    font-size: 16px;
    color: #2E7D32;
    margin-bottom: 18px;
}

.info-slab p {
    font-size: 16px;
    color: #444;
    margin-bottom: 26px;
}

/* points */
.slab-points {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.slab-points span {
    padding: 8px 16px;
    border: 1px solid #2E7D32;
    border-radius: 20px;
    font-size: 14px;
    color: #2E7D32;
}

/* mobile */
@media (max-width: 768px) {
    .canvas-images {
        grid-template-columns: 1fr 1fr;
    }

    .canvas-images img {
        height: 200px;
    }

    .info-slab {
        margin-top: 20px;
        padding: 30px 22px;
    }

    .info-slab h2 {
        font-size: 30px;
    }
}
.products-reveal {
    padding: 110px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* grid */
.reveal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* tile */
.reveal-tile {
    position: relative;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.reveal-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* overlay content */
.reveal-content {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.reveal-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.reveal-content p {
    font-size: 14px;
    max-width: 240px;
    color: var(--border-color);
}

/* hover effects */
.reveal-tile:hover img {
    transform: scale(1.12);
}

.reveal-tile:hover .reveal-content {
    opacity: 1;
    transform: translateY(0);
}

/* mobile */
@media (max-width: 768px) {
    .reveal-grid {
        grid-template-columns: 1fr;
    }

    .reveal-tile {
        height: 220px;
    }

    .section-title {
        font-size: 30px;
    }
}

.why-halo {
    padding: 130px 0;
    background: linear-gradient(180deg, #fff, #f5fdf2);
}

.halo-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.halo-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 80px;
}

/* layout */
.halo-layout {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    justify-items: center;
}

/* item */
.halo-item {
    text-align: center;
    max-width: 260px;
    transition: transform 0.35s ease;
}

/* icon container */
.halo-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    color: var(--secondary-color);
    font-size: 34px;
}

/* animated halo */
.halo-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    animation: haloSpin 8s linear infinite;
}

.halo-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #d1d5db;
}

/* text */
.halo-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #1f2937;
}

.halo-item p {
    font-size: 14px;
    color: #555;
}

/* hover */
.halo-item:hover {
    transform: translateY(-10px);
}

.halo-item:hover .halo-icon::before {
    border-style: solid;
}

/* animation */
@keyframes haloSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* center emphasis */
.halo-center h4 {
    font-weight: 600;
}

/* mobile */
@media (max-width: 768px) {
    .halo-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .halo-title {
        font-size: 30px;
    }
}



.trust-scroll {
    padding: 100px 0 60px;
    background: #fff;
    overflow: hidden;
}

.trust-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.trust-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* scroll area */
.scroll-wrapper {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 26px 0;
    background: #ffffff;
}

/* moving track */
.scroll-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: trustScroll 28s linear infinite;
}

/* items */
.scroll-item {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--secondary-color);
    padding: 8px 20px;
    border: 1px dashed #6a4a1e;
}

/* animation */
@keyframes trustScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* pause on hover */
.scroll-wrapper:hover .scroll-track {
    animation-play-state: paused;
}

/* mobile */
@media (max-width: 768px) {
    .trust-title {
        font-size: 30px;
    }

    .scroll-item {
        font-size: 14px;
        padding: 6px 14px;
    }
}
.breadcrumb-hero {
    position: relative;
    height: 300px; 
    background: url("../img/c1.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* dark overlay for readability */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* content */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.breadcrumb-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #A0B554;
}

.breadcrumb-path {
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #a6a6a6;
}

.breadcrumb-path span {
    margin: 0 6px;
}

.breadcrumb-brand {
    font-size: 14px;
    opacity: 0.85;
    color: #fff;
}

/* animated outline shapes */
.shape {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.25);
    z-index: 2;
    animation: floatShape 10s linear infinite;
}

.shape-one {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 8%;
    animation-duration: 12s;
}

.shape-two {
    width: 80px;
    height: 80px;
    bottom: 40px;
    right: 12%;
    animation-duration: 9s;
}

.shape-three {
    width: 160px;
    height: 160px;
    top: 60px;
    right: 25%;
    animation-duration: 14s;
}

/* animation */
@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.4;
    }
}

/* mobile */
@media (max-width: 768px) {
    .breadcrumb-hero {
        height: 240px;
    }

    .breadcrumb-content h1 {
        font-size: 30px;
    }

    .shape {
        display: none;
    }
}
.contact-unique {
    padding: 120px 0;
    background: linear-gradient(135deg, #f9fafb, #eef2f7);
}

.contact-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    position: relative;
}

/* CONTACT INFO – UNIQUE LEFT PANEL */
.contact-info-unique {
    padding: 0px;
}

.contact-info-unique h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 15px;
    color: #555;
    margin-bottom: 36px;
    max-width: 420px;
}

/* stack layout */
.info-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* individual box */
.info-box {
    display: flex;
    gap: 18px;
    padding: 20px 22px;
    background: #ffffff;
    border-left: 4px solid #c9eccd;
    transition: all 0.3s ease;
}

/* hover effect */
.info-box:hover {
    border-left-color: #031e06;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transform: translateX(6px);
}

/* icon */
.info-icon {
    font-size: 30px;
    min-width: 32px;
    line-height: 1;
    color: var(--secondary-color);
}
.info-text{
    text-align: initial;
}
/* text */
.info-text h5 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.info-text p {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

/* mobile */
@media (max-width: 768px) {
    .contact-info-unique {
        padding: 20px;
    }

    .contact-info-unique h2 {
        font-size: 28px;
    }

    .info-box:hover {
        transform: none;
    }
}


/* RIGHT FLOATING FORM */
.contact-form-box {
    flex: 1;
    background: #ffffff;
    padding: 40px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.contact-form-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* FORM */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.contact-form-box textarea {
    resize: none;
    height: 110px;
}

.contact-form-box button {
    width: 100%;
    padding: 14px;
    background: #1f2937;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #000000;
}

/* subtle background shape */
.contact-wrap::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px dashed #cbd5e1;
    top: -40px;
    left: -60px;
    z-index: 0;
}

/* mobile */
@media (max-width: 768px) {
    .contact-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-wrap::before {
        display: none;
    }
}
/* FORM BOX ADJUSTMENT */
.contact-form-box {
    display: flex;
    flex-direction: column;
    padding: 0;              /* REMOVE INTERNAL GAP */
}

/* KEEP FORM SPACING */
.contact-form {
    padding: 40px !important;
    margin: 40px !important;
}

/* FULL-WIDTH MAP */
.contact-map-full {
    width: 100%;
    height: 100%;
    margin: 0;               /* NO SPACE */
    padding: 0;              /* NO SPACE */
    overflow: hidden;
}

/* MAP IFRAME */
.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;          /* REMOVE INLINE GAP */
}


/* FORM WRAPPER */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* INPUT FIELDS */
.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #1f2937;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #9ca3af;
}

/* TEXTAREA */
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #1f2937;
    resize: none;
    outline: none;
    transition: border-color 0.3s ease;
}

/* FOCUS STATE */
.form-input:focus,
.form-textarea:focus {
    border-color: #2E7D32;   /* primary green */
}

/* SUBMIT BUTTON – MAIN FOCUS */
.form-btn {
    margin-top: 8px;
    padding: 14px;
    background: #2E7D32;    /* primary theme color */
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* BUTTON HOVER */
.form-btn:hover {
    background: #245f28;    /* darker green */
    transform: translateY(-2px);
}

/* BUTTON ACTIVE */
.form-btn:active {
    transform: translateY(0);
}
.footer-spine {
    background: #082d0c;
    color: #ffffff;
    font-size: 14px;
}

/* WRAPPER */
.footer-spine-wrap {
    display: flex;
    max-width: 1300px;
    margin: auto;
}

/* BRAND SPINE */
.footer-spine-brand {
    background: #2E7D32;
    width: 280px;
    padding: 60px 30px;
    border-right: 6px solid #B86321;
}

.footer-spine-brand img {
    height: 52px;
    margin-bottom: 14px;
}

.footer-spine-brand h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.footer-spine-brand span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.footer-spine-brand em {
    display: inline-block;
    margin-top: 14px;
    font-style: normal;
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.4);
}

/* CONTENT STACK */
.footer-spine-content {
    flex: 1;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* BLOCKS */
.spine-block h4 {
    margin-bottom: 14px;
    font-size: 15px;
    position: relative;
}

.spine-block h4::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #B86321;
    margin-top: 6px;
}

.spine-block a,
.spine-block span {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.spine-block a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* SOCIAL */
.spine-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.spine-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.spine-social a:hover {
    background: #B86321;
    border-color: #B86321;
    text-decoration: none;
}

/* BOTTOM */
.footer-spine-bottom {
    background: #163f1a;
    text-align: center;
    padding: 14px;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-spine-wrap {
        flex-direction: column;
    }

    .footer-spine-brand {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 6px solid #B86321;
    }

    .footer-spine-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}
.footer-spine {
    background: #082d0c;
    color: #ffffff;
    font-size: 14px;
}

/* WRAPPER */
.footer-spine-wrap {
    display: flex;
    max-width: 1300px;
    margin: auto;
}

/* BRAND SPINE */
.footer-spine-brand {
    background: #2E7D32;
    width: 280px;
    padding: 60px 30px;
    border-right: 6px solid #B86321;
}

.footer-spine-brand img {
    height: 130px;
    margin-bottom: 14px;
}

.footer-spine-brand h3 {
    margin: 0 0 6px;
    font-size: 18px;
}
.footer-spine-brand h3 {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient( 90deg, #7BFF82, #FFB57B, #3FFF49 );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: brandColorFlow 4s linear infinite;
}

/* ANIMATION */
@keyframes brandColorFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.footer-spine-brand span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.footer-spine-brand em {
    display: inline-block;
    margin-top: 14px;
    font-style: normal;
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.4);
}

/* CONTENT STACK */
.footer-spine-content {
    flex: 1;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* BLOCKS */
.spine-block h4 {
    margin-bottom: 14px;
    font-size: 15px;
    position: relative;
}

.spine-block h4::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    background: #B86321;
    margin-top: 6px;
}

.spine-block a,
.spine-block span {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.spine-block a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* SOCIAL */
.spine-social {
    display: flex;
    gap: 12px;
}

.spine-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.spine-social a:hover {
    background: #B86321;
    border-color: #B86321;
    text-decoration: none;
}

/* BOTTOM */
.footer-spine-bottom {
    background: #163f1a;
    text-align: center;
    padding: 14px;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-spine-wrap {
        flex-direction: column;
    }

    .footer-spine-brand {
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 6px solid #B86321;
    }

    .footer-spine-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
}
/* GO TO TOP BUTTON */
#goTopBtn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2E7D32; /* primary */
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
#goTopBtn:hover {
    background: #B86321; /* secondary */
    transform: translateY(-4px);
}

/* ACTIVE / CLICK */
#goTopBtn:active {
    transform: translateY(0);
}

/* SHOW STATE */
#goTopBtn.show {
    display: flex;
}
