/* =========================================
   TREE REMOVAL SECTION
========================================= */

.tree-removal-section {
    padding: 80px 0;
}

/* =========================================
   TREE REMOVAL SECTION - FIXED LAYOUT
   ========================================= */

/* Grid layout - left and right columns */
.tree-removal-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT COLUMN WRAPPER */
.tree-removal-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

/* IMAGE STYLES */
.tree-removal-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 3 / 4;
}

.tree-removal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.tree-removal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFB300;
    color: #fff;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    white-space: nowrap;
}

/* COMMON REASONS BOX - BELOW IMAGE */
.common-reasons-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #FFB300;
}

.common-reasons-box h3 {
    font-weight: 700;
    color: #1A2CA3;
    margin: 0 0 15px 0;
    text-align: left;
}

.tree-removal-keywords {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.tree-removal-keywords span {
    font-size: 15px;
    font-weight: 500;
    background: #f5f7fa;
    color: #1A2CA3;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(26, 44, 163, 0.15);
    text-align: left;
    transition: all 0.2s ease;
}

.tree-removal-keywords span:hover {
    background: #1A2CA3;
    color: #fff;
    border-color: #1A2CA3;
}

/* RIGHT COLUMN CONTENT */
.tree-removal-content {
    display: flex;
    flex-direction: column;
}

.tree-removal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0 0 20px 0;
}

.removal-item{
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 12px;
    border-left: 4px solid #FFB300;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.removal-item h3 {
    font-weight: 700;
    color: #FFB300;
    margin: 0 0 8px 0;
    text-align: left;
}

.removal-item p {
    color: #000;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tree-removal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tree-removal-left {
        position: relative;
        top: unset;
    }
    
    .tree-removal-image {
        aspect-ratio: 16 / 9;
        max-height: 450px;
    }

    .removal-item h3 {
        margin-bottom: 10px;
    }

    .removal-item p {
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .tree-removal-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tree-removal-keywords {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tree-removal-keywords {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .common-reasons-box h3 {
    }
    
    .tree-removal-keywords span {
        font-size: 14px;
        padding: 5px 10px;
    }
}

/* =========================================
   WARNING SIGNS SECTION
   ========================================= */

.warning-section {
    margin-top: 60px;
    padding: 40px 0 20px;
    border-top: 2px solid rgba(26, 44, 163, 0.1);
}

.warning-section .container {
    display: block !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.warning-heading {
    font-weight: 700;
    color: #1A2CA3 !important;
    text-align:left;
    margin: 0 0 10px 0 !important;
    padding: 0;
    max-width: 100% !important;
}

.warning-sub {
    text-align:left;
    color: #000;
    margin-bottom: 40px !important;
    line-height: 1.5;
}

.warning-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0;
    margin: 0;
}

.warning-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 23px;
    border-top: 4px solid #FFB300;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.warning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(26, 44, 163, 0.12);
}

.warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.warning-icon svg {
    width: 56px;
    height: 56px;
    display: block;
}

.warning-card p {
    font-weight: 600;
    color: #1A2CA3;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* =========================================
   RESPONSIVE - WARNING SIGNS
   ========================================= */

/* Tablet (max 768px) */
@media (max-width: 768px) {
    .warning-section {
        margin-top: 40px;
        padding: 30px 0 15px;
    }
    
    .warning-heading {
    }
    
    .warning-sub {
        margin-bottom: 30px !important;
    }
    
    .warning-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .warning-card {
        padding: 20px 15px;
    }
    
    .warning-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .warning-card p {
    }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
    .warning-section {
        margin-top: 30px;
        padding: 25px 0 10px;
    }
    
    .warning-heading {
    }
    
    .warning-sub {
        margin-bottom: 20px !important;
    }
    
    .warning-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .warning-card {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .warning-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .warning-card p {
    }
}

/* Small Mobile (max 375px) */
@media (max-width: 375px) {
    .warning-cards {
        gap: 10px;
    }
    
    .warning-card {
        padding: 12px 8px;
    }
    
    .warning-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .warning-card p {
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .warning-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .warning-card {
        padding: 15px 10px;
    }
    
    .warning-icon svg {
        width: 42px;
        height: 42px;
    }
}
/* --------------------------------------------------
   Large Desktop â€” 1920px
   
-------------------------------------------------- */
@media (min-width: 1920px) {
    .tree-removal-section {
        padding: 100px 0;
    }

    .tree-removal-grid {
        gap: 80px;
    }

    .tree-removal-features {
        gap: 20px;
    }

    .removal-item h3 {
    }

    .removal-item p {
    }

    .tree-removal-content > h3 {
    }

    .tree-removal-keywords span {
        font-size: 15px;
        padding: 7px 16px;
    }

    .warning-heading {
    }

    .warning-card {
        padding: 32px 24px;
    }

    .warning-card p {
    }
}


/* --------------------------------------------------
   Small Laptop â€” max 1280px
-------------------------------------------------- */
@media (max-width: 1280px) {
    .tree-removal-grid {
        gap: 48px;
    }

    .tree-removal-features {
        gap: 14px;
    }

    .removal-item {
        padding: 18px;
    }

    .removal-item h3 {
    }

    .removal-item p {
    }

    .warning-cards {
        gap: 16px;
    }

    .warning-card {
        padding: 24px 16px;
    }
}

/* --------------------------------------------------
   Tablet Landscape â€” max 1024px
-------------------------------------------------- */
@media (max-width: 1024px) {
    .tree-removal-section {
        padding: 70px 0;
    }

    .tree-removal-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tree-removal-image {
        top: unset;
        aspect-ratio: 16 / 9;
        max-height: 450px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .tree-removal-features {
        gap: 13px;
        margin: 20px 0;
    }

    .removal-item {
        padding: 16px;
    }

    .fremoval-item h3 {
    }

    .removal-item p {
    }

    .tree-removal-content > h3 {
    }

    .tree-removal-keywords span {
        font-size: 11px;
        padding: 5px 12px;
    }

    .warning-heading {
    }

    .warning-cards {
        gap: 14px;
    }

    .warning-card {
        padding: 22px 14px;
    }

    .warning-card p {
    }
}

/* --------------------------------------------------
   Tablet Portrait â€” max 768px
   Switch to single column layout
-------------------------------------------------- */
@media (max-width: 768px) {
    .tree-removal-section {
        padding: 50px 0;
    }

    /* Stack image on top of content */
    .tree-removal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Disable sticky â€” single column scrolls naturally */
    .tree-removal-image {
        position: relative;
        top: unset;
        aspect-ratio: 16 / 9;
        max-height: 380px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        border-radius: 14px;
    }

    .tree-removal-badge {
        top: 15px;
        left: 15px;
        padding: 6px 14px;
        font-size: 12px;
    }

    .tree-removal-content > p {
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .tree-removal-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    .removal-item {
        padding: 20px 22px;
    }

    .removal-item h3 {
        margin-bottom: 6px;
    }

    .removal-item p {
        line-height: 1.6;
    }

    /* Keywords heading */
    .tree-removal-content > h3 {
        margin: 3px 0 10px;
        text-align: left;
    }

    /* Keyword tags â€” 2 columns on tablet */
    .tree-removal-keywords {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .tree-removal-keywords span {
        font-size: 14px;
        padding: 6px 10px;
    }

    /* Warning section */
    .warning-section {
        margin-top: 40px;
        padding: 36px 0 16px;
    }

    .warning-heading {
    }

    .warning-sub {
        margin-bottom: 24px !important;
    }

    /* 2Ã—2 grid on tablet */
    .warning-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .warning-card {
        padding: 20px 16px;
    }

    .warning-card p {
    }
}

/* --------------------------------------------------
   Large Mobile â€” max 425px
-------------------------------------------------- */
@media (max-width: 425px) {
    .tree-removal-section {
        padding: 40px 0;
    }

    .tree-removal-grid {
        gap: 24px;
    }

    .tree-removal-image {
        aspect-ratio: 4 / 3;
        max-height: 260px;
        border-radius: 12px;
    }

    .tree-removal-badge {
        top: 12px;
        left: 12px;
        padding: 5px 12px;
        font-size: 14px;
    }

    .tree-removal-content > p {
        line-height: 1.7;
    }

    /* Single column feature cards */
    .tree-removal-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 16px 0;
    }

    .removal-item {
        padding: 14px;
        border-left-width: 3px;
    }

    .removal-item h3 {
    }

    .removal-item p {
    }

    /* Keywords — 2 columns on large mobile */
    .tree-removal-content > h3 {
        margin: 2px 0 9px;
    }

    .tree-removal-keywords {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .tree-removal-keywords span {
        font-size: 13x;
        padding: 5px 10px;
    }

    /* Warning â€” 2 columns still fine */
    .warning-section {
        margin-top: 32px;
        padding: 28px 0 12px;
    }

    .warning-heading {
    }

    .warning-sub {
        margin-bottom: 20px !important;
    }

    .warning-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .warning-card {
        padding: 18px 12px;
        border-radius: 12px;
    }

    .warning-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .warning-card p {
    }
}

/* --------------------------------------------------
   Mobile â€” max 375px
-------------------------------------------------- */
@media (max-width: 375px) {
    .tree-removal-section {
        padding: 36px 0;
    }

    .tree-removal-image {
        max-height: 220px;
    }

    .tree-removal-badge {
        padding: 5px 10px;
        font-size: 10px;
    }

    .tree-removal-content > p {
        line-height: 1.65;
    }

    .removal-item {
        padding: 12px;
    }

    .removal-item h3 {
    }

    .removal-item p {
    }

    .tree-removal-content > h3 {
    }

    .tree-removal-keywords {
        grid-template-columns: repeat(1, 1fr);
        gap: 6px;
    }

    .tree-removal-keywords span {
        font-size: 16px;
        padding: 15px 20px;
    }

    .warning-icon svg {
        width: 44px;
        height: 44px;
    }

    .warning-card p {
    }
}

/* --------------------------------------------------
   Small Mobile â€” max 320px
-------------------------------------------------- */
@media (max-width: 320px) {
    .tree-removal-section {
        padding: 30px 0;
    }

    .tree-removal-image {
        max-height: 190px;
    }

    .tree-removal-content > p {
        line-height: 1.6;
    }

    .removal-item {
        padding: 10px;
    }

    .removal-item h3 {
    }

    .removal-item p {
    }

    .tree-removal-content > h3 {
    }

    .tree-removal-keywords {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .tree-removal-keywords span {
        font-size: 10px;
        padding: 4px 9px;
    }

    .warning-icon svg {
        width: 38px;
        height: 38px;
    }

    .warning-heading {
    }

    .warning-sub {
    }

    /* Single column at absolute minimum width */
    .warning-cards {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .warning-card {
        padding: 12px 8px;
    }

    .warning-icon {
        font-size: 20px;
    }

    .warning-card p {
    }
}

/* --------------------------------------------------
   Landscape Mobile override (â‰¤768px landscape)
   Revert features to 2-col since there's horizontal room
-------------------------------------------------- */
@media (max-width: 768px) and (orientation: landscape) {
    .tree-removal-section {
        padding: 40px 0;
    }

    .tree-removal-grid {
        gap: 25px;
    }

    .tree-removal-image {
        max-height: 300px;
        aspect-ratio: 16 / 9;
    }

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

    .warning-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .warning-card {
        padding: 16px 12px;
    }
}

/* --------------------------------------------------
   Print
-------------------------------------------------- */
@media print {
    .tree-removal-section {
        padding: 20px 0;
    }

    .tree-removal-grid {
        display: block;
    }

    .tree-removal-image {
        position: relative;
        top: 0;
        box-shadow: none;
        border: 1px solid #ddd;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .tree-removal-image:hover img {
        transform: none;
    }

    .removal-item {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .removal-item:hover {
        transform: none;
    }

    .tree-removal-keywords span {
        background: #f0f0f0;
        border: 1px solid #ddd;
    }

    .tree-removal-keywords span:hover {
        background: #f0f0f0;
        color: #1A2CA3;
    }

    .warning-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .warning-card:hover {
        transform: none;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.tree-removal-section h2, .section-title h2 { font-size: 40px !important; }
.tree-removal-section h3, .removal-item h3, .tree-removal-content h3, .warning-heading, .section-title h3 { font-size: 22px !important; }
.tree-removal-section p, .removal-item p, .tree-removal-content p, .warning-card p, .warning-sub, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
.tree-removal-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .tree-removal-section h2, .section-title h2 { font-size: 35px !important; }
    .tree-removal-section h3, .removal-item h3, .tree-removal-content h3, .warning-heading, .section-title h3 { font-size: 22px !important; }
    .tree-removal-section p, .removal-item p, .tree-removal-content p, .warning-card p, .warning-sub, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
    .tree-removal-section li { font-size: 18px !important; line-height: 1.6 !important; }
}