/* GeoTerra — Component Overrides */
.geot-service-card-full { 
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: var(--geot-radius); 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}
.geot-service-card-full:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--geot-shadow-premium), 0 10px 30px rgba(235, 92, 47, 0.15); 
    border-color: rgba(235, 92, 47, 0.3);
    background: rgba(255, 255, 255, 0.03);
}
.geot-service-img-wrapper {
    overflow: hidden;
    position: relative;
}
.geot-service-card-full img { 
    width: 100%; 
    height: 240px; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.geot-service-card-full:hover img {
    transform: scale(1.08);
}
.geot-service-card-full .geot-service-card-body { 
    padding: 36px; 
    position: relative; 
    z-index: 2; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.geot-service-card-full i { 
    font-size: 1.8rem; 
    color: var(--geot-primary); 
    background: rgba(235, 92, 47, 0.08);
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(235, 92, 47, 0.2);
    margin-bottom: 24px; 
    transition: all 0.4s ease;
}
.geot-service-card-full:hover i {
    background: var(--geot-primary);
    color: #fff;
    transform: translateY(-3px);
}
.geot-service-card-full h3 { margin-bottom: 12px; font-size: 1.4rem; transition: color 0.3s; font-weight: 700; color: #fff; }
.geot-service-card-full:hover h3 { color: var(--geot-primary); }
.geot-service-card-full p { color: var(--geot-text-muted); line-height: 1.7; margin: 0; font-size: 0.95rem; }

/* ── About Pillars ── */
.geot-pillar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--geot-radius);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.geot-pillar:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 92, 47, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--geot-shadow-premium);
}
.geot-pillar i {
    font-size: 1.8rem;
    color: var(--geot-primary);
    background: rgba(235, 92, 47, 0.08);
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(235, 92, 47, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.geot-pillar:hover i {
    background: var(--geot-primary);
    color: #fff;
    transform: translateY(-2px);
}
.geot-pillar h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.geot-pillar p {
    color: var(--geot-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
