/**
 * Perfect Lawns Landing Blocks - Main Styles
 * Version: 1.0.0
 */

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --pllb-primary: #1aa50b;
    --pllb-primary-dark: #148a08;
    --pllb-primary-light: #e8f5e6;
    --pllb-secondary: #1e3a1e;
    --pllb-accent: #f7b500;
    --pllb-accent-light: #fff8e0;
    --pllb-text-dark: #1a1a1a;
    --pllb-text-light: #666666;
    --pllb-white: #ffffff;
    --pllb-gray-light: #f5f7f5;
    --pllb-gradient-green: linear-gradient(135deg, #1aa50b 0%, #0d7a03 100%);
    --pllb-gradient-hero: linear-gradient(135deg, rgba(26, 165, 11, 0.97) 0%, rgba(13, 122, 3, 0.99) 50%, rgba(30, 58, 30, 0.98) 100%);
    --pllb-shadow-sm: 0 2px 8px rgba(26, 165, 11, 0.1);
    --pllb-shadow-md: 0 4px 20px rgba(26, 165, 11, 0.15);
    --pllb-shadow-lg: 0 8px 40px rgba(26, 165, 11, 0.2);
    --pllb-shadow-xl: 0 20px 60px rgba(26, 165, 11, 0.25);
    --pllb-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --pllb-radius-sm: 8px;
    --pllb-radius-md: 16px;
    --pllb-radius-lg: 24px;
    --pllb-radius-xl: 32px;
}

/* Animations */
@keyframes pllb-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pllb-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   BASE STYLES
============================================ */
.pllb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.pllb-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pllb-section-subtitle {
    color: var(--pllb-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pllb-section-subtitle::before,
.pllb-section-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--pllb-primary);
}

.pllb-section-header--light .pllb-section-subtitle {
    color: var(--pllb-accent);
}

.pllb-section-header--light .pllb-section-subtitle::before,
.pllb-section-header--light .pllb-section-subtitle::after {
    background: var(--pllb-accent);
}

.pllb-section-header--light .pllb-section-title {
    color: var(--pllb-white);
}

.pllb-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--pllb-text-dark);
    line-height: 1.3;
    margin: 0;
}

.pllb-section-title span {
    color: var(--pllb-primary);
}

/* Buttons */
.pllb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.pllb-btn--primary {
    background: var(--pllb-white);
    color: var(--pllb-primary);
    box-shadow: var(--pllb-shadow-md);
}

.pllb-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--pllb-shadow-lg);
    background: var(--pllb-accent);
    color: var(--pllb-text-dark);
}

.pllb-btn--secondary {
    background: transparent;
    color: var(--pllb-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.pllb-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pllb-white);
}

.pllb-btn--green {
    background: var(--pllb-gradient-green);
    color: var(--pllb-white);
    box-shadow: var(--pllb-shadow-md);
}

.pllb-btn--green:hover {
    transform: translateY(-3px);
    box-shadow: var(--pllb-shadow-lg);
}

/* ============================================
   HERO SECTION
============================================ */
.pllb-hero {
    background: linear-gradient(135deg, rgba(26, 165, 11, 0.95) 0%, rgba(13, 122, 3, 0.98) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.pllb-hero .pllb-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pllb-hero__content {
    color: var(--pllb-white);
}

.pllb-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pllb-hero__badge i {
    color: var(--pllb-accent);
}

.pllb-hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.pllb-hero__headline span {
    color: var(--pllb-accent);
}

.pllb-hero__description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 500px;
}

.pllb-hero__cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pllb-hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pllb-hero__stat {
    text-align: center;
}

.pllb-hero__stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--pllb-accent);
}

.pllb-hero__stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.pllb-hero__image {
    position: relative;
}

.pllb-hero__image-main {
    width: 100%;
    border-radius: var(--pllb-radius-xl);
    box-shadow: var(--pllb-shadow-lg);
}

.pllb-hero__trust-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--pllb-white);
    padding: 20px 25px;
    border-radius: var(--pllb-radius-md);
    box-shadow: var(--pllb-shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pllb-hero__trust-icon {
    width: 50px;
    height: 50px;
    background: var(--pllb-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pllb-primary);
    font-size: 24px;
}

.pllb-hero__trust-text strong {
    display: block;
    color: var(--pllb-text-dark);
    font-size: 16px;
}

.pllb-hero__trust-text span {
    color: var(--pllb-text-light);
    font-size: 13px;
}

/* ============================================
   USP SECTION
============================================ */
.pllb-usp {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pllb-white) 0%, var(--pllb-gray-light) 100%);
    position: relative;
}

.pllb-usp__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.pllb-usp__card {
    background: var(--pllb-white);
    padding: 40px 28px;
    border-radius: var(--pllb-radius-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--pllb-shadow-card);
    border: 1px solid rgba(26, 165, 11, 0.08);
}

.pllb-usp__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--pllb-gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.pllb-usp__card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--pllb-shadow-xl);
}

.pllb-usp__card:hover::before {
    transform: scaleX(1);
}

.pllb-usp__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pllb-primary-light) 0%, #d4edcf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pllb-usp__icon i {
    font-size: 32px;
    color: var(--pllb-primary);
    transition: all 0.4s;
}

.pllb-usp__card:hover .pllb-usp__icon {
    background: var(--pllb-gradient-green);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(26, 165, 11, 0.3);
}

.pllb-usp__card:hover .pllb-usp__icon i {
    color: var(--pllb-white);
    transform: scale(1.1);
}

.pllb-usp__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--pllb-text-dark);
    margin: 0 0 12px 0;
}

.pllb-usp__description {
    font-size: 14px;
    color: var(--pllb-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STEPS SECTION
============================================ */
.pllb-steps {
    padding: 100px 0;
    background: var(--pllb-primary-light);
    position: relative;
    overflow: hidden;
}

.pllb-steps::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 165, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pllb-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Arrow between steps */
.pllb-steps__arrow {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: var(--pllb-gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pllb-white);
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(26, 165, 11, 0.35);
    animation: pllb-float 3s ease-in-out infinite;
}

.pllb-steps__card:last-child .pllb-steps__arrow {
    display: none;
}

.pllb-steps__card {
    background: var(--pllb-white);
    padding: 50px 35px 40px;
    border-radius: var(--pllb-radius-xl);
    text-align: center;
    position: relative;
    box-shadow: var(--pllb-shadow-md);
    transition: all 0.4s ease;
}

.pllb-steps__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pllb-shadow-lg);
}

.pllb-steps__number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--pllb-gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--pllb-white);
    box-shadow: 0 4px 15px rgba(26, 165, 11, 0.4);
    z-index: 2;
}

.pllb-steps__icon {
    width: 90px;
    height: 90px;
    background: var(--pllb-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
}

.pllb-steps__icon i {
    font-size: 36px;
    color: var(--pllb-primary);
}

.pllb-steps__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pllb-text-dark);
    margin: 0 0 15px 0;
}

.pllb-steps__description {
    font-size: 15px;
    color: var(--pllb-text-light);
    line-height: 1.7;
    margin: 0;
}

.pllb-steps__cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   SERVICES SECTION
============================================ */
.pllb-services {
    padding: 100px 0;
    background: var(--pllb-white);
}

.pllb-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pllb-services__card {
    background: var(--pllb-gray-light);
    border-radius: var(--pllb-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.pllb-services__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pllb-shadow-lg);
}

.pllb-services__image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pllb-services__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.pllb-services__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pllb-primary-light);
}

.pllb-services__image--placeholder i {
    font-size: 48px;
    color: var(--pllb-primary);
}

.pllb-services__content {
    padding: 25px;
}

.pllb-services__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--pllb-text-dark);
    margin: 0 0 10px 0;
}

.pllb-services__description {
    font-size: 14px;
    color: var(--pllb-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SUBURBS SECTION
============================================ */
.pllb-suburbs {
    padding: 100px 0;
    background: var(--pllb-secondary);
    position: relative;
    overflow: hidden;
}

.pllb-suburbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') center/200px repeat;
    opacity: 0.5;
}

.pllb-suburbs .pllb-container {
    position: relative;
    z-index: 2;
}

.pllb-suburbs__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pllb-suburbs__text {
    color: var(--pllb-white);
}

.pllb-suburbs__description {
    font-size: 17px;
    opacity: 0.9;
    margin: 0 0 30px 0;
    line-height: 1.8;
}

.pllb-suburbs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pllb-suburbs__tag {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 16px 22px;
    border-radius: var(--pllb-radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--pllb-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.pllb-suburbs__tag:hover {
    background: var(--pllb-primary);
    border-color: var(--pllb-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 165, 11, 0.4);
}

.pllb-suburbs__map {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--pllb-radius-xl);
    padding: 30px;
    text-align: center;
}

.pllb-suburbs__map-placeholder {
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--pllb-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pllb-white);
}

.pllb-suburbs__map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--pllb-primary);
}

.pllb-suburbs__map-placeholder span {
    font-size: 16px;
    opacity: 0.8;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.pllb-testimonials {
    padding: 100px 0;
    background: var(--pllb-gray-light);
}

.pllb-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pllb-testimonials__card {
    background: var(--pllb-white);
    padding: 45px 40px;
    border-radius: var(--pllb-radius-xl);
    box-shadow: var(--pllb-shadow-card);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(26, 165, 11, 0.08);
}

.pllb-testimonials__card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--pllb-shadow-xl);
}

.pllb-testimonials__card::before {
    content: '"';
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: var(--pllb-primary);
    opacity: 0.1;
    line-height: 1;
}

.pllb-testimonials__stars {
    color: var(--pllb-accent);
    margin-bottom: 25px;
    font-size: 18px;
}

.pllb-testimonials__stars i {
    margin-right: 3px;
    filter: drop-shadow(0 2px 4px rgba(247, 181, 0, 0.3));
}

.pllb-testimonials__text {
    font-size: 16px;
    color: var(--pllb-text-dark);
    line-height: 1.9;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.pllb-testimonials__author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--pllb-primary-light);
}

.pllb-testimonials__avatar {
    width: 55px;
    height: 55px;
    background: var(--pllb-gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pllb-white);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(26, 165, 11, 0.3);
}

.pllb-testimonials__info strong {
    display: block;
    font-size: 17px;
    color: var(--pllb-text-dark);
    font-weight: 700;
}

.pllb-testimonials__info span {
    font-size: 14px;
    color: var(--pllb-primary);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
============================================ */
.pllb-cta-section {
    padding: 80px 0;
    background: var(--pllb-primary-light);
}

.pllb-cta-box {
    background: var(--pllb-gradient-green);
    border-radius: var(--pllb-radius-xl);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pllb-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pllb-cta__content {
    position: relative;
    z-index: 2;
}

.pllb-cta__headline {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--pllb-white);
    margin: 0 0 20px 0;
}

.pllb-cta__description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.pllb-cta__contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.pllb-cta__contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--pllb-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.pllb-cta__contact-item:hover {
    opacity: 0.8;
}

.pllb-cta__contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pllb-cta__image {
    position: relative;
    z-index: 2;
}

.pllb-cta__image img {
    width: 100%;
    border-radius: var(--pllb-radius-xl);
    box-shadow: var(--pllb-shadow-lg);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1200px) {
    .pllb-usp__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pllb-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pllb-hero .pllb-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pllb-hero__headline {
        font-size: 40px;
    }
    
    .pllb-hero__description {
        margin: 0 auto 35px;
    }
    
    .pllb-hero__cta-group {
        justify-content: center;
    }
    
    .pllb-hero__stats {
        justify-content: center;
    }
    
    .pllb-hero__image {
        display: none;
    }
    
    .pllb-steps__grid::before {
        display: none;
    }
    
    .pllb-usp__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pllb-suburbs__content {
        grid-template-columns: 1fr;
    }
    
    .pllb-suburbs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pllb-cta-box {
        grid-template-columns: 1fr;
        padding: 50px 40px;
    }
    
    .pllb-cta__image {
        display: none;
    }
}

@media (max-width: 768px) {
    .pllb-hero {
        padding: 40px 0 40px;
    }
	
	
    
    .pllb-hero__headline {
        font-size: 32px;
    }
    
    .pllb-section-title {
        font-size: 32px;
    }
    
    .pllb-steps__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .pllb-steps__arrow {
        display: none;
    }
    
    .pllb-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pllb-testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .pllb-suburbs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pllb-hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pllb-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pllb-usp__grid {
        grid-template-columns: 1fr;
    }
    
    .pllb-services__grid {
        grid-template-columns: 1fr;
    }
    
    .pllb-suburbs__grid {
        grid-template-columns: 1fr;
    }
    
    .pllb-cta-box {
        padding: 40px 25px;
    }
    
    .pllb-cta__headline {
        font-size: 28px;
    }
}
