/*
Theme Name: T & A Acreage Mowing
Theme URI: https://tandaacreagemowing.com.au
Author: Now Technology Systems
Author URI: https://sitedesignnow.com
Description: Custom WordPress theme for T & A Acreage Mowing - Professional acreage mowing services in Ipswich and surrounding areas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tanda-acreage-mowing
Tags: one-column, custom-logo, custom-menu, featured-images
*/

/* ============================================
   Color palette derived from logo:
   Primary Dark Green: #1B5E20
   Primary Green: #2E7D32
   Accent Green: #4CAF50
   Light Green: #E8F5E9
   Dark Text: #1a1a1a
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2E7D32;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1B5E20;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: #2E7D32;
    color: #fff;
    border-color: #2E7D32;
}

.btn-primary:hover {
    background: #1B5E20;
    border-color: #1B5E20;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #2E7D32;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2E7D32;
    background: #E8F5E9;
}

.nav-cta {
    background: #2E7D32 !important;
    color: #fff !important;
    border-radius: 6px !important;
}

.nav-cta:hover {
    background: #1B5E20 !important;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2E7D32;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-phone:hover {
    color: #1B5E20;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 75px;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(27, 94, 32, 0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 20px;
    max-width: 790px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.trust-badges {
    display: flex;
    gap: 24px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge svg {
    flex-shrink: 0;
    stroke: #4CAF50;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- INTRO SECTION ---------- */
.intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
    color: #1B5E20;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
}

/* ---------- SERVICES ---------- */
.services-section {
    padding: 80px 0;
    background: #f8faf8;
}

.services-section h2 {
    text-align: center;
    color: #1B5E20;
}

.services-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #4CAF50;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #E8F5E9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    stroke: #2E7D32;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: #1B5E20;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

.section-cta {
    text-align: center;
}

/* ---------- EQUIPMENT ---------- */
.equipment-section {
    padding: 80px 0;
    background: #fff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.equipment-image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.equipment-content h2 {
    margin-bottom: 1.25rem;
    color: #1B5E20;
}

.equipment-content p {
    margin-bottom: 1rem;
    color: #444;
}

.equipment-features {
    list-style: none;
    margin-top: 1.5rem;
}

.equipment-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-weight: 500;
    color: #333;
}

.equipment-features svg {
    stroke: #4CAF50;
    flex-shrink: 0;
}

/* ---------- GALLERY ---------- */
.gallery-section {
    padding: 80px 0;
    background: #f8faf8;
}

.gallery-section h2 {
    text-align: center;
    color: #1B5E20;
}

.gallery-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.placeholder-gallery {
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #a5d6a7;
}

.placeholder-content {
    text-align: center;
    color: #66bb6a;
}

.placeholder-content svg {
    stroke: #a5d6a7;
    margin-bottom: 8px;
}

.placeholder-content span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ---------- ABOUT ---------- */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-content h2 {
    margin-bottom: 1.25rem;
    color: #1B5E20;
}

.about-content p {
    margin-bottom: 1rem;
    color: #444;
    font-size: 1.02rem;
}

.why-choose {
    background: #E8F5E9;
    border-radius: 12px;
    padding: 36px 32px;
    border-left: 4px solid #2E7D32;
}

.why-choose h3 {
    margin-bottom: 1.5rem;
    color: #1B5E20;
    font-size: 1.3rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    stroke: #2E7D32;
}

.why-item strong {
    display: block;
    margin-bottom: 2px;
    color: #1B5E20;
}

.why-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* ---------- SERVICE AREAS ---------- */
.areas-section {
    padding: 80px 0;
    background: #1B5E20;
    color: #fff;
}

.areas-section h2 {
    text-align: center;
    color: #fff;
}

.areas-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.85);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 2rem;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    padding: 18px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.area-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.area-card svg {
    stroke: #81C784;
    flex-shrink: 0;
}

.areas-closing {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #fff;
    color: #1B5E20;
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: #E8F5E9;
    border-color: #E8F5E9;
    color: #1B5E20;
}

.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.6);
}

.cta-section .btn-outline:hover {
    background: #fff;
    color: #1B5E20;
    border-color: #fff;
}

/* ---------- CONTACT ---------- */
.contact-section {
    padding: 80px 0;
    background: #f8faf8;
}

.contact-section h2 {
    text-align: center;
    color: #1B5E20;
}

.contact-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-item svg {
    stroke: #2E7D32;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.contact-item a,
.contact-item span {
    color: #555;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #2E7D32;
}

.contact-social {
    margin-top: 8px;
}

.contact-social strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #E8F5E9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E7D32;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2E7D32;
    color: #fff;
}

.social-links a svg {
    fill: currentColor;
    stroke: currentColor;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.contact-form-wrap h3 {
    margin-bottom: 1.5rem;
    color: #1B5E20;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    margin-top: 8px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-brand img {
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #999;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-services li {
    color: #999;
    font-size: 0.9rem;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #999;
}

.footer-contact a:hover {
    color: #4CAF50;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2E7D32;
    color: #fff;
}

.footer-social a svg {
    fill: currentColor;
    stroke: currentColor;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1B5E20;
    transform: translateY(-3px);
}

.back-to-top svg {
    stroke: #fff;
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
}

.mobile-cta .btn {
    font-size: 0.95rem;
    padding: 12px 20px;
}

/* ---------- WORDPRESS SPECIFIC ---------- */
/* WordPress admin bar fix */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* WordPress content styles */
.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-content {
    /* Remove default WordPress content margins for homepage */
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .header-inner {
        height: 65px;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 16px 20px;
        gap: 0;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        margin-top: 65px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Sections */
    .intro-section,
    .services-section,
    .equipment-section,
    .gallery-section,
    .about-section,
    .areas-section,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .equipment-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Mobile CTA */
    .mobile-cta {
        display: block;
    }

    .back-to-top {
        bottom: 80px;
    }

    /* WordPress admin bar */
    .admin-bar .main-nav {
        top: 111px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-content {
        padding: 40px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .why-choose {
        padding: 28px 24px;
    }

    .section-cta .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .area-card,
    .why-item {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .service-card.visible,
    .area-card.visible,
    .why-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
