/* =========================================
   GLOBAL SETTINGS
   ========================================= */
.pcm-section {
    margin-bottom: 50px;
    width: 100%;
    position: relative;
    clear: both;
    box-sizing: border-box;
}

.pcm-section * {
    box-sizing: border-box;
}

/* =========================================
   FEATURE CARD (SINGLE IMAGE)
   ========================================= */
.pcm-feature-card {
    display: flex;
    align-items: center;
    gap: 100px;
    margin: 100px 0;
    position: relative;
}

.pcm-feature-card.layout-reverse {
    flex-direction: row-reverse;
}

.pcm-feature-card.no-image .pcm-col-text {
    flex: 1;
    max-width: 100%;
}

/* --- Text Column --- */
.pcm-feature-card .pcm-col-text {
    flex: 1;
    position: relative;
    padding: 60px 40px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- Inner Content Container --- */
.pcm-inner-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
}

/* --- Blob Background --- */
.pcm-blob-bg {
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 100%;
    background-color: #f7f9f8;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    z-index: 1;
    transition: all 0.5s ease;
}

.pcm-feature-card.layout-reverse .pcm-blob-bg {
    border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%;
}

/* --- Image Column --- */
.pcm-col-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pcm-col-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   FEATURE CARD TWO IMAGES
   ========================================= */
.pcm-feature-card-two-img {
    display: flex;
    align-items: center;
    gap: 100px;
    margin: 100px 0;
    position: relative;
}

.pcm-feature-card-two-img.layout-reverse {
    flex-direction: row-reverse;
}

.pcm-feature-card-two-img.no-image .pcm-col-text {
    flex: 1;
    max-width: 100%;
}

/* --- Two Images Column --- */
.pcm-col-images {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    min-width: 300px;
}

.pcm-img-wrapper {
    position: relative;
    width: 48%;
}

.pcm-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- Image Offset Effect --- */
.pcm-img-1 {
    margin-top: 150px;
}

.pcm-img-2 {
    margin-bottom: 150px;
}

/* --- Text Column (Two Images Version) --- */
.pcm-feature-card-two-img .pcm-col-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    min-width: 300px;
}

.pcm-feature-card-two-img .pcm-inner-content {
    max-width: 450px;
    width: 100%;
}


/* =========================================
   TITLE (DIV Element)
   ========================================= */
.pcm-title {
    font-family: "ct_font_9xgardenfont", Sans-serif !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #8F9F82 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    line-height: 1.4 !important;
    word-wrap: break-word;
    width: 100%;
}

/* =========================================
   DESCRIPTION TEXT
   ========================================= */
.pcm-desc {
    margin-bottom: 30px;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
}

.pcm-desc p {
    margin-bottom: 15px;
}

.pcm-desc p:empty {
    display: none;
}

/* =========================================
   BUTTON
   ========================================= */
.pcm-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    background: #fff;
    transition: all 0.3s ease;
}

.pcm-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pcm-btn .arrow {
    margin-left: 8px;
}

/* =========================================
   RESPONSIVE MOBILE
   ========================================= */
@media (max-width: 768px) {
    /* --- Feature Card (Single Image) --- */
    .pcm-feature-card, 
    .pcm-feature-card.layout-reverse {
        flex-direction: column-reverse;
        gap: 30px;
        margin: 50px 0;
    }
    
    .pcm-blob-bg {
        border-radius: 20px;
        left: 0;
        width: 100%;
    }
    
    .pcm-feature-card .pcm-col-text {
        padding: 40px 30px;
        width: 100%;
        align-items: flex-start;
    }
    
    .pcm-feature-card .pcm-inner-content {
        max-width: 100%;
    }
    
    /* --- Feature Card Two Images --- */
    .pcm-feature-card-two-img,
    .pcm-feature-card-two-img.layout-reverse {
        flex-direction: column-reverse;
        gap: 30px;
        margin: 50px 0;
    }
    
    .pcm-col-images {
        width: 100%;
        gap: 15px;
    }
    
    .pcm-img-wrapper {
        width: 48%;
    }
    
    .pcm-img-1 {
        margin-top: 40px;
    }
    
    .pcm-img-2 {
        margin-bottom: 40px;
    }
    
    .pcm-feature-card-two-img .pcm-col-text {
        width: 100%;
        padding: 0 20px;
        align-items: flex-start;
    }
    
    .pcm-feature-card-two-img .pcm-inner-content {
        max-width: 100%;
    }
    
     /* --- Common Mobile Styles --- */
    .pcm-title {
        font-size: 24px !important;
    }
    
    .pcm-desc {
        text-align: left;
        line-height: 1.6;
    }
}